我的问题是我是一个初学者用php的东西,我坚持用一个页面链接,从带有类别的网格图像到具有该类别内容的图像网格。 例如,我有一个主页,意大利语,法语和中文收件人显示该国家/地区的标志,如果访问者点击特定标志,该类别的收件人将在名为category.php的页面中。 我正在使用Mysql DBMS 有人可以告诉我如何处理这个问题。
以下是我附带的链接示例:
<a href="<?php specialité?specialite=1 ?>"><img id="im" class="img-responsive img-circle" src="images/france.png"></a>
答案 0 :(得分:0)
使用如下,
<a href="category.php?<?php echo specialité?specialite=1 ?>"><img id="im" class="img-responsive img-circle" src="images/france.png"></a>
然后
category.php
<?php
$specialité = $_POST['specialité'];
if(isset($_POST['specialité'])){
# call mysql using $_POST['specialité']
# select table and get country related page and load page
header("Location:your db_value");
}
或者如果你知道POST id使用switch operator
switch($_POST['specialité']){
case 1:
//call mysql
break;
case 2:
//call mysql
break;
case 3:
//call mysql
break;
}