Search found 1 match
- Thu Feb 26, 2004 5:56 pm
- Forum: PHP - Code
- Topic: PHP & Javascript variables
- Replies: 2
- Views: 418
answer.
wouldn't it be easyer to just add an id field to your table and have that stored in a variable? Heres an exaple the usual query $result= mysql_query("SELECT * FROM articles" ); $rows = mysql_num_rows($result); for($i=0; $i<$rows; $i++) //will return true for each result. { $data =...