can I do this?
At the begining of my file: menu.php I have:
<?PHP $name = $_GET['name'];?>
somewhere I have <a href="menu.php?=$name">.
it doesnt work, but how can I send $name out of that link?
<a href="menu.php?name=<?php echo $name;?>">
NM I fixed it by changing: <a href="menu.php?=<?PHP $name ?>">
to <a href="menu.php?&name=<?PHP echo $name; ?>">
this works which is good, but how can I get it so when I hover over the link it doesnt display the value of $name in the status bar
Search for javascript that targets Hide Status but remember that a person can view your link in the source view.