sir, is there any way how to hide a variable? coz, im making a php program using GET and i dont want the value of that variable be visible to the url.. this is my code: echo "<tr><td><img src='$icon' border='0'></td><td><a href=\"opendir.php?a=$p\">$file</a></td>"; thanks..
Well you could use something like base64_encode to encode the value. But of course if the user wants to they could decode it anyways.