Re: [PHP-DB] PHP amd MYSQL

2002-06-05 Thread Miguel Carvalho
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

RE: [PHP-DB] PHP amd MYSQL

2002-06-05 Thread Gary . Every
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.