Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
form.test
<?php //formtest2.php
if(isset(5_POST('name']))) $name = $name $POST'name'];
else $name = "(Not Entered)";
echo <<< END
<html>
<head>
<title> FORM Test</title>
<head>
<body>
Your name is : $name<br>
form methods =post" action="formtest2.php">
What is your name?
<input type="text" name="name">
<input type=submit">
</form>
</body>
<html>
_END;
?>