If I have a table like this in an html form,
<form method="POST" action="a.php">
<table name="dataTable">
<tr>
<td>row one col one</td>
<td>row one col two</td>
<td>row one col three</td>
</tr>
<tr>
<td>row two col one</td>
<td>row two col one</td>
<td>row two col one</td>
</tr>
</table>
</form>
how can I access the table data when the form is submitted to p.php?
$dataList = $_POST['dataTable']; ???????