Hi,
> I am setting up a web page system which involves html pages, php pages
> and mysqldatabase.
>
> I have a number of questions and do not know where to find answers.
>
> If I display the rows from a database table in a php generated html
> table is it possible to mark a row so that it can be
One way to do it would be thusly:
$result=mysql_query(yadayada);
foreach($result as $row){
echo '
' . $row[name] . '
...
';
}
This would set up a url that when the user clicks on $row[name] (such as
"Record Description" it would call delete.php with the argument of $row[id]
Within that delete.