当前位置:Gxlcms > PHP教程 > phpmysql解决方法

phpmysql解决方法

时间:2021-07-01 10:21:17 帮助过:13人阅读

php mysql
这只是查询出表的数据,显示在li标签中,如何使得点击每条数据就跳转到另外页面查看详细信息?求助!

    • $link=MySQL_connect('localhost','root','pqm4YAqGt7jx7jhn');
      ?>
      mysql_select_db('php_db');
      mysql_query('set names utf8');
      $query="select * from table1 where id<=6";

      $result= mysql_query($query);//获取数据集
      while($rows=mysql_fetch_array($result))
      {
      ?>


      echo $rows['name'];
      echo "
    • ";
      }
      ?>

  • ------解决方案--------------------
    你是要把每天记录做个链接吗?那你把a标签放到循环里面来,比如:




    • $link=MySQL_connect('localhost','root','pqm4YAqGt7jx7jhn');
      ?>
      mysql_select_db('php_db');
      mysql_query('set names utf8');
      $query="select * from table1 where id<=6";

      $result= mysql_query($query);//获取数据集
      while($rows=mysql_fetch_array($result))
      {
      ?>
      " title="">


      }
      ?>




  • ------解决方案--------------------
    至于怎么显示html内容,自己调整下,以上只是示例

    人气教程排行