Re: [PHP] Template style question

2005-11-05 Thread Florent Monnier
Perhaps you could get inspirations and tips from: http://pear.php.net/search.php?q=template&in=packages -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Help with a regular expression for 0,1 or 2 decimal places

2005-10-25 Thread Florent Monnier
Phillip Oertel a écrit : > hi, > > i'm not a regex guru myself, but the following regex should work - tabke > a look at my regex test setup ... > > > $test = array( > "1", > "1.", > "1.2", > "1.23", > "1.234", > > "1234", > "1234.", > "1234.5", > "1234.56", >

[PHP] running mode

2005-10-14 Thread Florent Monnier
Hello, How to test if the current script is running in CLI, CGI or Apache mode? thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] DOM XML compatible PHP4 & PHP5

2005-09-12 Thread Florent Monnier
Hi, Is there a way to make dom xml applications compatible PHP4 and PHP5? Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] switching php version

2005-09-10 Thread Florent Monnier
Hi, I have put the last php in /usr/local/bin/php505, but apache still use the older php in /usr/bin/php How to configure apache to select one particular from several installed php? -- Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] STDERR not opened with php 5.0.5

2005-09-09 Thread Florent Monnier
Hi, on http://www.php.net/manual/en/features.commandline.php is writen: STDERR - An already opened stream to stderr. This saves opening it with: But this does not work: #! /usr/local/bin/php505 -q This does work: #! /usr/local/bin/php505 -q Is the manual wrong or does php 5.0.5 have chang