View Single Post
  #2 (permalink)  
Old 06-15-2007, 05:13 PM
daHippo daHippo is offline
Rookie
 
Join Date: Sep 2006
Posts: 5
daHippo is on a distinguished road
To encrypt your variable add the md5() function as you see it in the below code:

<?
$test=md5('Bruce');
echo "
<a href='client.php?name='" . $test . "'>A...
?>

as a safety to having errors in php, you must concatenate your variables when in an echo/print statement. Just look above and you will notice how I inserted the two dots.

Reply With Quote