Skip to content

Instantly share code, notes, and snippets.

@AliMilani
Created November 21, 2023 12:05
Show Gist options
  • Save AliMilani/ca72705d5d1fc4e83dd6cea94b488edd to your computer and use it in GitHub Desktop.
Save AliMilani/ca72705d5d1fc4e83dd6cea94b488edd to your computer and use it in GitHub Desktop.
<html>
<body>
Welcome <?php echo $_POST["username"]; ?><br>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mydoc</title>
</head>
<body>
<form action="ali.php" method="post">
name: <input type="text" name="username"/>
<input type="submit" name="send" value="submit your name"/>
</form>
</body>
</html>
@AliMilani
Copy link
Author

AliMilani commented Jan 9, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment