scofansnags wrote:Thanks for the response from the 2 members. I admire anyone who is proficient in coding and understanding all the ins and outs of this stuff. However, I posted my question in the PHP for Newbies. What you guys fail to realize is that you all speak in generalities and above the head of most beginners. It would be helpful if you could break down the information in simple terms and an easy to follow directions. Your responses were like stating something in mid sentence for someone like me who doesn't understand this at all.
I suppose you are definately partially right. Sorry, my answer may have been a bit quick-of-the-shelve.
scofansnags wrote:
I have a test that has mutiple choice and fill in the blanks. Where and what do I add to the form tag, input ...etc. Does anyone have a page or site that they have done, so I can look at the source code? That would be helful.
Hm. That is not PhP related, but purely HTML oriented. That means you have no clue ven about HTML? If so: Take a look at www.htmlgoodies, which has good tutorials, amongst which, how to create a form.
General ouline:
<form action="SOMEPAGE.PhP" method="POST">
<input type="text" name="ItemName" value="Defaultvalue">
<input type="submit">
</form>
In the page SOMEPAGE.php you can then place this little piece of info:
<?
echo $POST['ItemName'];
$user = $POST['ItemName'];
echo "And the user is: ".$user;
?>
If you get going from there, and you get into deeper water, more trouble, please post back