Re: [PHP] Re: RADICORE ramework released

2006-04-13 Thread Hans Juergen von Lengerke
> 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

Re: [PHP] Re: RADICORE ramework released

2006-04-13 Thread Hans Juergen von Lengerke
> 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

Re: [PHP] echo, print and is_callable()/function_exists()

2006-04-07 Thread Hans Juergen von Lengerke
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_

Re: [PHP] FQDN of the server thru CLI

2006-04-04 Thread Hans Juergen von Lengerke
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

Re: [PHP] Question about fsockopen

2005-04-11 Thread Hans Juergen von Lengerke
> 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

Re: [PHP] Variable Passing

2005-04-08 Thread Hans Juergen von Lengerke
> 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

Re: [PHP] Get "nice" variables from POST

2004-03-12 Thread Hans Juergen von Lengerke
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

Re: [PHP] Another preg question

2004-02-14 Thread Hans Juergen von Lengerke
> 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 ===