I\'m trying to place the output of this PHP SQL query into a database table, but it is outputting all of the row data into one column.
if(isset($_POST[\'subm
while ($row = mysql_fetch_row($result)) { echo ''; foreach ($row as $value) { echo "".$value.""; } echo ""; }