i have a page1 and page2.
in the page on a have this php code :
example data :
justin
harry
david
when i click justin it will redirect to page 2, but i don't want to show the querystring url in page 2 -> detail.php
but when in page2 i use echo $id
it will print K01
how can i do that
in the page on a have this php code :
Code:
$query = "select code, name from mscustomer";
$rs = mysql_query($query);
while($row = mysql_fetch_array($rs))
{
echo "<a href=\"detail.php?id=".$row['code']."\">".$row['name']."</a>";
}
justin
harry
david
when i click justin it will redirect to page 2, but i don't want to show the querystring url in page 2 -> detail.php
but when in page2 i use echo $id
it will print K01
how can i do that
Comment