hi people
i have a database query that returns multiple rows which are iterated and displayed. the problem ive got is that i want to display one row element on another page when a user clicks on a result row. i need to pass this one bit of info via a url in something like the form:
detail.php?detail=$myrow[0]
$myrow[0] typically contains a large amount of text. it passes through to the detail page but passes as the text string - which obviously only then displays the first word...
i dont need to pass an entire array so dont need to serialize.. how can i do it?
thanks for any help