Form Php



    Building a Form


$search = htmlentities($_GET["search"]);
$self = htmlentities($_SERVER['PHP_SELF']);
if ($search ==='' ){
    echo ('
    
        
        
    ');
}
else {
    echo "The search string is: $search";
}
?>