I need to create a date in this xsd format: "2001-10-26T21:32:52" but when I use the date function in php it replaces "T" with the Timezone (which it is supposed to do). This is the command I'm using:
$time = date("y-m-dTH:i:s", time());
Which produces: '10-02-13EST10:21:03'
How do I get it replace "EST" with just "T"?
Thanks.