There are some things the page that processes the request will have. First, the variable that has the contents of the form will be $_POST with each name as a key on that array. You can do something like this to see the structure and values on a submitted form:
print '<pre>'; print_r($_POST); print '</pre>';
Other things will depend on your config. You might need to act on the text to strip slashes out, etc.
My old puter crashed and it had all my code and I've not touched this stuff in 9 months or so, I'm slowly picking it back up but I perfer to do things the way I learned origonally
Lets say I simply have a form
I used to be able to have a second page topquotep.php and have it start posting info and thats what im having a hard time googling
I can't remember exactly what it was, but it might have had @post or something and then a bunch of stuff to sprip codes..
anyone have any ideas?