Hi David,
I insert the following codes into categories.php but getting the error message
$seed = intval(time()/)600;
Parse error: syntax error, unexpected ')' ......./categories.php on line 42
But if i use
$seed = intval(date("Ymd"));
it works. How can i correct this. thanks.
Full code:
{CODE SAVED}
Hi,
Looks like a typo there - try the following:
$seed = intval(time()/600);
That should do the trick!
Cheers,
David.