BECOMES:

<a href="abc.php?day=$start_day"> > </a>

This works only if it's within an echo statement:

echo "<a href='abc.php?day=$start_day'>";

and you must make sure to either use single quotes around the 
href link, or else escape the double quotes with a backslash:

echo "<a href=\"abc.php?day=$start_day\">";

Alternatively, you can do it this way:

<a href="abc.php?day=<? echo "$start_day; ?>">

(ie embed the echo within a regular HTML tag)

-Lisi

___________________________________________________________
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to