It's just the syntax:
1. Don't use the "/" after .php:
<a href="abc.php?day=
2. Don't use echo inside the string:
<a href='abc.php?day=$start_day'></a>
3. Check the use of double and single quotes.
If you use:
echo "<a href='abc.php?day=$start_day'>abc</a>";
maybe you will get the link you want.
Gabriel.
"M�Cella Erdem Efe" <[EMAIL PROTECTED]> escribi� en el mensaje
news:[EMAIL PROTECTED]
> Hi;
>
> I need to use <a href="abc.php/?day=......" > </a> statement in a
xxx.php
> file.
>
> I have to use a php variable on the right of the day variable like <a
> href="abc.php/?day="+<?echo $start_day;?>> </a>.
> When i get this variable in abc.php file
>
> if (phpversion() <= "4.1.0")
> { $vars = array_merge($HTTP_GET_VARS, $HTTP_POST_VARS); }
> else { $vars = $_REQUEST; }
> print_r($vars);
>
> Output is
> Array ( [day] => (nothing)
>
> When i use a constant instead of variable like <a
> href="abc.php/?day=12-12-2002"></a>.
> it works .
>
> Please help me about using a php variable in a href statement.
>
> thanks for your attention.
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php