Right now it is a guestbook thing, but I created this whole thing in order to dynamically update individual webpages. It was created so I could (or my client could) easily update smaller sections of their site without actually logging into the control panel.
Heres what I have:
I have an HTML file (htmlform.html) that has form inputs. When you press the button it sends the variables to a PHP file (phptest.php) that organizes the variables and writes them to a text file. Then the last PHP file (phpRec.php) recieves the info from the text file and writes them out in a table.
If you know asp it is extremely easy…use the “post” action from your form then have a asp page with a series of request.form statements make each form element into a variable like this
dim strExample
strExample = request.form(“formElemet”)
Then you can put those values into session objects or cookies or open a database connection and use the data as pleased. Let meknow if you need a better example of this.
I don’t know asp. I only know a limited amount of PHP, and I have no clue how to use PHP along w/ mySQL. Database interaction confuses the crap outta me.