How can I pass a value with href?
I have given like this?
<A HREF="my.php?$val"> and in my page.php how can I get the value passed in my.php page? Because I am already using post method in the same page
Jc
<a href="my.php?val=blah"> Then in my.php you can access the value of 'val' with the $POST array, as in $POST['val']
I have some thing like this
my.php?val=$val" $val is where I am storing value, variable name. When I give value directly, it's working, however when I give variable name, it is not working?