plese tell me what is problem here | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 2

plese tell me what is problem here

<!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"> <title></title> </head> <body> <form method="post" action="<?php echo $_SERVER ['PHP_FILE'];?>"> Usar name : <input type="text" name="usar"> <input type="submit"> </form> <?php if($_SERVER["REQUEST_METHOD"] == "POST"){ $name = $_REQUEST['usar']; if (empty($name)){ echo "I love you"; } else { echo "I hate you";} } ?> </body> </html>

10th May 2019, 6:01 AM
md jahed
md jahed - avatar
1 Réponse
0
Thank you for sharing your code, but do you also have an error message or description of what's going wrong for you? It'll be easier to hep with that info :)
10th May 2019, 1:13 PM
Rincewind
Rincewind - avatar