i have this code so far in php and html which displays a project table
i have this code so far in php and html which displays a project table.
its a form function that allows the user to input a comment and submit their comments.
i need a PHP page that will receive the “POST” and display the users submitted comments as well as the project table.
this is what i have so far.
<form action=”actionhandle.php” method=”POST”>
<table style=”text-align: left; width: 374px; height: 724px;” border=”2″ cellpadding=”2″ cellspacing=”2″>
<tbody>
<tr>
<td style=”vertical-align: top;”>Project Title<br>
</td>
<td style=”vertical-align: top;”>Completion Percentage<br>
</td>
<td style=”vertical-align: top;”>User Comments:<br>
</td>
</tr>
<tr>
<td style=”vertical-align: top;”>Weapon I<br>
</td>
<td style=”vertical-align: top;”>90%<br>
</td>
<td style=”vertical-align: top;”><textarea style=”height: 100px; width: 100px;” cols=”1″ rows=”1″ name=”Comment:”></textarea></td>
</tr>
<tr>
<td style=”vertical-align: top;”>Weapon II<br>
</td>
<td style=”vertical-align: top;”>65%<br>
</td>
<td style=”vertical-align: top;”><textarea style=”height: 100px; width: 100px;” cols=”1″ rows=”1″ name=”Comment:”></textarea></td>
</tr>
<tr>
</table>
<button style=”height: 100px; width: 100px;” value=”submit” name=”submit”>Submit Report</button><br>
</form>
<br>
</body></html>
how do i POST the entire table along with the user entered comments after its been submitted?
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"
