bradgrafelman wrote:Simply click on the appropriate forum for your question and then click the "New Thread" image above the list of threads.
In other words, exactly the same process that led to the original post......
maryphp wrote:Could you send me some working sample code...
Better yet; show us the code you've got and maybe we'll see the mistake.
Incidentally,
printf("_POST: <pre>%s</pre>", print_r($_POST));
won't work right anyway; print_r() prints stuff to the output, it does not return a string, unless you change it to print_r($_POST, true).