Posts

Showing posts from October, 2024

Form OF PHP IN Huzaifa Khan Bhai

  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title >Html Form</ title > </ head > < body >     < form action = "process.php" method = "POST" >         Name: < input type = "text" name = "name" >< br >         Age: < input type = "text" name = "age" >< br >         Gender: < input type = "text" name = "gender" >< br >         < input type = "submit" Value = "Submit" >     </ form > </ body > </ html > <?php $name = $_POST [ 'name' ]; $age = $_POST [ 'age' ]; $Gender = $_POST [ 'gender' ]; echo "Hello, " . $name . "!<br>" ; echo "...