> From: Tony Marston <[EMAIL PROTECTED]>
> "Hans Juergen von Lengerke" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> >> From: Tony Marston <[EMAIL PROTECTED]>
> >>
> >> Any problems with locale are cased by havi
> From: Tony Marston <[EMAIL PROTECTED]>
>
> Any problems with locale are cased by having the language
> code in your browser set to something which cannot be
> matched up with the contents of the server's locale file.
> If it cannot find a match my software is supposed to keep
> the current defau
Just wrap it, like Example 1 of the manual shows
function my_echo($array, $key) {
echo $array[$key];
}
array_walk_recursive($array, 'my_echo');
> Date: Fri, 7 Apr 2006 15:42:40 +0100
> From: Chris Boget <[EMAIL PROTECTED]>
> To: php-general@lists.php.net
> Subject: [PHP] echo, print and is_
I usually do this by forcing the profile to be read before I
run the script. Something like
* * * * * . /etc/profile && /path/to/script
> Date: Tue, 04 Apr 2006 17:43:09 +0530
> From: Venkat Venkataraju <[EMAIL PROTECTED]>
> To: php-general@lists.php.net
> Subject: [PHP] FQDN of the server th
> Date: Sun, 10 Apr 2005 08:00:23 - (UTC)
> From: [EMAIL PROTECTED]
>
> I have several IP in one interface (eth0) in my server and I want make
> connection to another server (check email, etc) using different ip for
> every mail server. I was read the document, and there is no way how to
> mak
> Brad Brevet:
>
> Hi, I am curious how to pass a variable without using something like id=321.
>
> I have seen sites that have something like
> http://www.website.com/something/321 and the variable is passed how exactly
> is that done? And is it called something specific so I know how to refer t
I know this isn't what you want, but nevertheless, this
"does not look ugly":
# Get variables from the form
#
$username = $_POST['username'];
$password = $_POST['password'];
$password2 = $_POST['password2'];
$email = $_POST['email'];
$email2= $_POST['email2'];
$nickname
> From: Al <[EMAIL PROTECTED]>
>
> $text= preg_replace("/\n\n+/", "\n\n", $text);
> // remove excess This doesn't seem to do anything.
Strange, your code works for me:
[EMAIL PROTECTED]:~ > cat foo.php
[EMAIL PROTECTED]:~ > php ./foo.php
before:
===
foo
bar
===
after:
===
foo
bar
===
8 matches
Mail list logo