Posted by universalbitmapper on 02/27/06 12:50
Hi,
This exercise (From PAM525Web Development) asks me to display a table
of reviews, then sort the reviews depending on which column heading is
clicked.
I can't find how to write this line:
<th><a
href=movie_details03.php?movie_id=$movie_id&coll_sort=\"review_date\">"Date
of Review"</th>
in this bit of code:
$review_table_headings=<<<EOD
<tr>
<th><a
href=movie_details03.php?movie_id=$movie_id&coll_sort=\"review_date\">"Date
of Review"</th>
<th>Review Title</th>
<th>Reviewer Name</th>
<th>Movie Review Comments</th>
<th>Ratings</th>
</tr>
EOD;
The coll_sort variable is extracted by a GET
Navigation:
[Reply to this message]
|