Result Display Issues
Posted: Fri Jun 28, 2002 4:26 pm
Ok, what im doing is a basic mysql query for certain field information:
"SELECT * FROM test WHERE genre = '????'"
according to this genre, im letting the client receive these dynamic text/image:
<img src="<?php echo $row_Recordset1['image']; ?>">
<p><?php echo $row_Recordset1['title']; ?>
<p><?php echo $row_Recordset1['format']; ?>
<p> <?php echo $row_Recordset1['company']; ?>
So far its working quite nicely...by changing the '????' i can retrieve data related to the different genres.
Although this is good, i need to be able to display EVERY result within the genre that the person is searching for (this set up only shows me one result).
I have an iframe that will display the results, and inside this iframe, i would like 5 columns and 2 rows (10 total) per page.
How do i set this result display?? and how do i include links at the bottom of the page to navigate through the pages of results??
Thanks so much!
"SELECT * FROM test WHERE genre = '????'"
according to this genre, im letting the client receive these dynamic text/image:
<img src="<?php echo $row_Recordset1['image']; ?>">
<p><?php echo $row_Recordset1['title']; ?>
<p><?php echo $row_Recordset1['format']; ?>
<p> <?php echo $row_Recordset1['company']; ?>
So far its working quite nicely...by changing the '????' i can retrieve data related to the different genres.
Although this is good, i need to be able to display EVERY result within the genre that the person is searching for (this set up only shows me one result).
I have an iframe that will display the results, and inside this iframe, i would like 5 columns and 2 rows (10 total) per page.
How do i set this result display?? and how do i include links at the bottom of the page to navigate through the pages of results??
Thanks so much!