Just when you thought it was safe to go back in the water. =)
I have my pages all set and looking good and then it dawned on me. Some of my queries are producing multiple results.
How do I go about adding links to move NEXT and PREVIOUS from my records in my array?
Here's my fetch query:
mysql_connect("localhost", "<id>", "<pw>") or die("Failure to communicate with database");
mysql_select_db("<db>");
$result = mysql_query("SELECT * FROM tsttbl WHERE name = 'Bob'");
$marr = mysql_fetch_array($result);
Thanks as always