adrian wrote:You can try this on a page that is .php
Insert this into your page... set the +3 to whatever you like. This is for a numerical date.
<?php
$tomorrow = mktime(0, 0, 0, date("m"), date("d")+3, date("y"));
echo "Order By ".date("m/d/y", $tomorrow);
?>
adrian wrote:You can try this on a page that is .php
Insert this into your page... set the +3 to whatever you like. This is for a numerical date.
<?php
$tomorrow = mktime(0, 0, 0, date("m"), date("d")+3, date("y"));
echo "Order By ".date("m/d/y", $tomorrow);
?>
cdidcott wrote:adrian wrote:You can try this on a page that is .php
Insert this into your page... set the +3 to whatever you like. This is for a numerical date.
<?php
$tomorrow = mktime(0, 0, 0, date("m"), date("d")+3, date("y"));
echo "Order By ".date("m/d/y", $tomorrow);
?>
Is it an easy process to change a page from .html to .php?
How about a Date for non-php pages?
Colin
cdidcott wrote:Thanks Adrian for the advice :) (I'm learing every day)
Colin