php // $name=$_GET['name']; // The above code was commented out because it is not the secure way to do query. // it was replaced with the below code please try to use this method in the future. $_GET['name'] = str_replace(array('.', '/'), '', $_GET['name']); $name=$_GET['name']; ?>
|