Hello. I have a problem with $_GET. This is my code
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<?php
$usern=$_GET['us'];
echo "Welcome " . $usern;
?>
<br>
<a href="quiz.php?x=1&zet=$usern">QUIZ HTML</a>
<a href="quiz.php?x=2">QUIZ PHP</a>
<br>
<a href="login.html">Logout</a>
</body>
</html>
And i want to send the $usern variable to another, variable which is already got from $_GET. I don't know if it's not possbile but on the coresponding link instead of an username it sais $usern. Please help and sorry for bad english.