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_deta ils03.php?movie _id=$movie_id&c oll_sort=\"revi ew_date\">"Date
of Review"</th>
in this bit of code:
$review_table_h eadings=<<<EOD
<tr>
<th><a
href=movie_deta ils03.php?movie _id=$movie_id&c oll_sort=\"revi ew_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
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_deta ils03.php?movie _id=$movie_id&c oll_sort=\"revi ew_date\">"Date
of Review"</th>
in this bit of code:
$review_table_h eadings=<<<EOD
<tr>
<th><a
href=movie_deta ils03.php?movie _id=$movie_id&c oll_sort=\"revi ew_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
Comment