的index.php如何將一個變量傳遞到另一個頁面
$typesql = $_GET['type']
fetch_pages.php
$results = $mysqli->prepare("SELECT name, type FROM artists WHERE type = ?);
$results->bind_param("s", $typesql);
$results->execute();
$results->bind_result($name, $type);
我用上面得到的index.php中,藝術家型,我想要通過它在fetch.php中使用它並將其綁定到我的sql查詢中。
使用查詢字符串從一個頁面傳遞值到另一個。 就像http://localhost/fetch.php?type = –