| 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. |