我有一个网址,例如:
<ul>
<?php
$sql = "select * from product";
$res = mysql_query($sql);
while($row = mysql_fetch_array($res))
{
?>
<li> <a href="test.php?id=<?php $row['name']?>"><?php $row['name']?></a></li>
<?php
}
?>
</ul>
当这里 $row['name'] 有“茶和咖啡”时,PHP 端:
$id = $_GET['id'];
的$id
值为"Tea"但我需要整个字符串为"Tea & Coffee"。