0
我希望能夠點擊其內具有特定信息的鏈接 -刪除部分
<a href="index.php?content=quiz-demo-1id=series-99">
ID =系列-99是我想的信息能夠作爲變量頁面上使用 - index.php?content=quiz-demo-1
1頁1 - 上mysite.com/Page_1 mysite.com/Page_1
2-鏈接:點擊此處 - <a href="index.php?content=quiz-demo-1id=series-99">
3,新頁面的URL - mysite.com/index.php?content=quiz-demo-1
4 - 新的頁面代碼:
<?php
$quizname = $_GET['id'];
?>
<h2><?php echo $quizname?></h2>
我想:id=series-99
落了新的URL。
謝謝!
http://php.net/manual/en/function.parse-url.php –