Posted by Joe on 02/15/06 23:08
FWIW, I finally found a partial solution. It took using the print_r
function to get my head around the way $_POST is built -- I know simple
stuff. Oh well.
Anyway, foreach just works once I used it properly.
<?php
foreach($_POST as $key => $value)
{
print ('<td>' . "$value" . '</td>');
}
?>
This is what I was looking for. Thanks for the suggestions and pointers
that led me to this. Cheers & all hail php.net/manual
Navigation:
[Reply to this message]
|