Answers for "from action php"

4

form action php

// Page containing a form:
<form action="myaction.php" method="post">
 <p>Your name : <input type="text" name="name" /></p>
 <input type="submit" value="Submit">
</form>

// myaction.php
Hello <?php echo htmlspecialchars($_POST['name']); ?>
Posted by: Guest on April-30-2021
10

action_page.php

<form method="GET">
  <input type="text" name="someName">
  //The Name Attribute will be put into the _GET inside of php 
  <input type="submit" value="Submit">
 </form>
  
<?php
$var = $_GET("TestUser1");
echo ($var);
?>
Posted by: Guest on January-23-2021

Code answers related to "from action php"

Browse Popular Code Answers by Language