<?php
if(isset($_GET[\'nama\']) AND isset($_GET[\'email\']))
{
echo $_GET[\'nama\'];
}
echo "<br/>";
if(isset($_GET[\'username\']))
{
echo $_GET[\'username\'];
}
echo "<br/>";
if(isset($_GET[\'password\']))
{
echo $_GET[\'password\'];
}
echo "<br/>";
if(isset($_GET[\'email\']))
{
echo $_GET[\'email\'];
}
?>