[SOLVED] GET help
Posted: Mon Jun 28, 2004 10:39 pm
hi guys, i got this loop going listing all these planes and im using GET on the URL,
on the next page i have to test if it works. and it doesnt, am i doing something wrong here?
thanx for your help it is much appriacted, first tiome round for this!
oh, and is there a better way of doing this?
Code: Select all
<?php
echo "<tr>
<td>
<a href='order1.php?P_Stock=<?php echo $P_Stock;>'> $P_Stock </a>
</td>
<td>$P_Name</td>
<td> $P_Cat </td>
<td> $P_Scale </td>
<td> $P_Length </td>
<td> $P_Span </td>
<td> $P_Price </td>
<td> $P_Desc </td> </tr> ";
?>thanx for your help it is much appriacted, first tiome round for this!
oh, and is there a better way of doing this?
Code: Select all
<?php
$P_Stock = $_GET['P_Stock'];
echo" stock is $P_Stock ";
?>