Hello,
I have a problem. I want to pass some variables along to the next page. I don't have a problem doing this with one variable, however, how do I pass two variables?
This is my code so far:
<tr>
<td width="30%" bgcolor="#FFDCA8" height="21">
<p style="margin-left: 10; margin-right: 10">
<font face="Verdana" size="2">
<?php
echo '<p>Auction ID: ';
echo htmlspecialchars(stripslashes($row['auctionID']));
echo '<p>ISBN: ';
echo htmlspecialchars(stripslashes($row['isbn']));
echo '<p>Title: ';
echo htmlspecialchars(stripslashes($row['title']));
echo '<p>Highest Bid: ';
echo htmlspecialchars(stripslashes($row['highBid']));
echo '<p>Highest Bidder: ';
echo htmlspecialchars(stripslashes($row['highBidder']));
echo '<p>Initial Price: ';
echo htmlspecialchars(stripslashes($row['initPrice']));
echo '<p>Deadline: ';
echo htmlspecialchars(stripslashes($row['deadline']));
echo '<a href="details.php?auctionID=';
echo htmlspecialchars(stripslashes($row['auctionID']));
echo '">View Auction</a>';
echo '</p>';
?>
</font>
</td>
</tr>
As you can see I am passing auctionID to the next page... how do I do it, if I also want to pass title to the next page?
Thanks for your help!
Jenny