What this Blog is About
Showing posts with label Exercise 07. Show all posts
Showing posts with label Exercise 07. Show all posts
Friday, May 29, 2009
Sunday, May 17, 2009
Exercise 7: User input for database access with PHP
- Create an HTML page with the form:
<FORM METHOD="GET" ACTION="submit.php"> What's your name? <INPUT NAME="myname" SIZE=10>
(Then press RETURN)
</FORM> - Then, create a PHP file named submit.php with the following code:
<?php
echo "Hello, ", $myname;
?>
Subscribe to:
Posts (Atom)