hey all
i have some trouble with some php ive been working on;
im still new to this, so bear over with me.
the problem is, that i need to define a variable as the date today,
i do that by :
// IF (isset($dato))
// else
// {
// $dato=date("d m");
// }
to make sure that the var $dato is set. the i include a piece of php from another file, that contains a calendar-lookish table, where the dates are urls like this:
<a href=index.php?dato=08 10>08</a>
the problem is: the urls doesnt change the var - it looks like it doesnt even catch the new $dato, but uses the old one - how can i change the value of an $var just through a a href?
regards
John Reyes