Forum Moderators: coopster
the table is at <removed> on the results page.
i can work out how to do the form that submits the data, but i have no idea how to make it edit the actual results document.
cheers!
[edited by: jatar_k at 1:08 am (utc) on Aug. 3, 2007]
[edit reason] no urls thanks [/edit]
like so
<table>
<?php include 'tabledata.php';?>
</table>
this way you can just append to the tabledata.php file and not have to worry about writing the closing table tag every time.
then when you want to add data you can use fopen [php.net] to open tabledata.php for append, then write a row to it with the new data using fwrite [php.net] then use fclose [php.net] to close the file.