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