[PHP] magic quotes

2007-07-17 Thread Phil Princely
Hi all, I've been having a problem with a setting on a test server and production server. My test server has magic_quotes_gpc off, but the production server has it turned on. I've no access to the php.ini for the production server and don't want to change the setting on my test server. Searching

[PHP] strtotime returns 00:00 for 7am

2007-06-20 Thread Phil Princely
Hi all I'm new to this list. I hope this hasn't been discussed already. using this code: function test_time($time_string) { echo strftime("%X %A, %b %e\n", strtotime($time_string)); } test_time('now'); test_time('4pm + 2 Hours'); test_time('now + 2 fortnights'); test_time('last Monday'); tes