Skip to content Skip to sidebar Skip to footer

Put Checkboxes Next To Items In Table Html Php

I have a webpage that allows users to view the log files on the SD card that's on my Beaglebone. On this webpage, is a table with hyperlinks to the log files so that when the user

Solution 1:

The line where you echo out the form tag and table, you need to either escape all the double quotes in your string or change them all to single quotes. You have strings like "<form method="get">..." and are using double quotes within double quotes which will cause an error. It should be something more like:

echo "<formaction='unlink.php'method='get'><table>$col</table><inputtype='submit'name='formSubmit'value='Submit' /></form> ";

If you viewed the error log that php writes to, you would see this error.

Post a Comment for "Put Checkboxes Next To Items In Table Html Php"