Answers for "$_post['somthing'] variable to get on into and input tag"

PHP
0

how to form data to another file in php

// Check if the form is submitted if ( isset( $_GET['submit'] ) ) { // retrieve the form data by using the element's name attributes value as key $firstname = $_GET['firstname']; $lastname = $_GET['lastname']; // display the results echo '<h3>Form GET Method</h3>'; echo 'Your name is ' . $lastname . ' ' . $firstname; exit;
}
Posted by: Guest on December-03-2020
0

how to form data to another file in php

//
Posted by: Guest on December-03-2020

Browse Popular Code Answers by Language