<!DOCTYPE html>
<html>
<body>

<?php
parse_str("name=Bill&age=60");
echo $name."<br>";
echo $age;
?>
  
</body>
</html>