d.
>
>Any thoughts?
>
>At 09:06 AM 1/4/2002, Jonathan David Edwin Wright wrote:
>>It's actually alot easier that you think!
>>
>>for the news file, just create a file called 'news' (minus ' of course!
>>;) in your http root, then create
Hiya,
Personally, I use the following bit of code. All it does is take a 14 digit
timestamp and convert it into a unix timestamp:
function date($date) {
//Extract the parts from the date
$year = substr($date, 0, 4);
$month = substr($date, 4, 2);
$day = substr($date, 6, 2);
It's actually alot easier that you think!
for the news file, just create a file called 'news' (minus ' of course! ;)
in your http root, then create (or append) a .htaccess with the following
lines:
ForceType application/x-httpd-php
That tells Apache to parse news via PHP. As what you'v
3 matches
Mail list logo