Hi
I have a search page which does a database query on MySql and returns a record set:
$result = $db->query($sql)
I step through this result step with:
while ($row->record()) {
//write records
}
What I want to know is how can I pass the recordset onto another page. Each record written above has a link, but in the new page (showing the record details) I want to be able to move backwards and forwards through my search results.
Can I pass my search results (record set) to the called page?
Thanks in advance.
Cheers
Richard
I have a search page which does a database query on MySql and returns a record set:
$result = $db->query($sql)
I step through this result step with:
while ($row->record()) {
//write records
}
What I want to know is how can I pass the recordset onto another page. Each record written above has a link, but in the new page (showing the record details) I want to be able to move backwards and forwards through my search results.
Can I pass my search results (record set) to the called page?
Thanks in advance.
Cheers
Richard