This is probably all too easy, but hey, I\'m not gonna learn if I don\'t ask.
I have some teachers that want to put their lesson plans online and an idea I had was to do it through a form/database. Where the form presents, they insert their information like with text value 1 they can insert the title, and text value 2 they can have the lesson, etc, etc, and then they click submit to post it to the database. Now when they submit, I want the information to go into their db records (entitled title and lesson) and then show up under their lesson plans (I can do that part). I just need to know what to post to in the form (page.php?) to get it to post into the database records.
Would it go something like this:
<form action=\"page.php\" method=\"post\">
<input type=\"text\" name=\"title\" value=\"<?php echo $title ?>\">
<input type=\"text\" name=\"lessonplan\" value=\"<?php echo $lessonplan ?>\">
<input type=\"Submit\" name=\"submit\" value=\"Submit\">
</form>