--
This group is managed and maintained by the development staff at 360 PSG. An enterprise application development company utilizing open-source technologies for todays small-to-medium size businesses.
For information or project assistance please visit :
http://www.360psg.com
You received this message because you are subscribed to the Google Groups "Professional PHP Developers" group.
To post to this group, send email to Professi...@googlegroups.com
To unsubscribe from this group, send email to Professional-P...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/Professional-PHP
> Nothing that happens in PHP will change because of your browser, especially things that actually happen on the server like a time transformation
A common misconception. Usually things "just work" when using a different browser. This is why I have every single browser for every OS installed. Instead of writing code, I just cycle through browsers at the address I want my project to appear until it works. This is called coding on hopes and dreams.
The only reason PHP will act differently for a browser is if you tell it to. Maybe you're outputting invalid HTML and Firefox isn't being forgiving. Maybe a plugin is munging post data, replacing everything with "LOLOLOLOLOLCthuhlu".
Best plugin ever.
Sent from my eyePhone.
Love, John Quincy Doe
--
This group is managed and maintained by the development staff at 360 PSG. An enterprise application development company utilizing open-source technologies for todays small-to-medium size businesses.
For information or project assistance please visit :
http://www.360psg.com
You received this message because you are subscribed to the Google Groups "Professional PHP Developers" group.
To post to this group, send email to Professi...@googlegroups.com
To unsubscribe from this group, send email to Professional-P...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/Professional-PHP
$gd = $_GET['start_date'];//1284711077
$start_date = date("Y-m-d", $gd);
$gt = $_GET['start_time'];//1284711077
$start_time = date("H:i:s", $gt);
$time = $start_date . " " . $start_time;
Wait, wait.
You said you're outputting with Dojo.
Are you still doing that, or are you just echoing out the time to see
what it's like?
--
Jack Timmons
@_Codeacula