-2

我正在使用 php 做一个项目。我想通过付款计划1,计划2,计划3,免费使用php从mysql表顺序中检索数据。如何?

4

4 回答 4

4
// Initializing connection data.
$host_db = 'localhost';
$name_db = 'article_db';
$user_db = 'username';
$pass_db = 'password';

try {
  // Connecting using the PDO object.
  $connection = new PDO("mysql:host=$host_db; dbname=$name_db", $user_db, $pass_db);

  // Setting the query and runnin it...
  $sql = "SELECT * FROM `article` WHERE `category` = 5 ORDER BY 3";
  $result = $connection->query($sql);

  // Iterating over the data and printing it.
  foreach($result as $row) {
      echo $row['id']. ' - '. $row['name']. ' - '. $row['category']. ' - '. $row['editor']. '<br />';
  }
  // Closing the connection.
  $connection = null;
}
// Catching it if something went wrong.
catch(PDOException $e) {
  echo $e->getMessage();
}
于 2013-01-08T04:55:59.120 回答
1

从数据库中检索数据的步骤是:

  1. 建立与数据库的 mysql 连接。
  2. 写下你的查询。要检索数据,您必须使用 mysql_query("select * from your_table where id=$id")。(但是这在 PHP 5.5 中已经被弃用了)。看看这个链接来进一步解释你:http: //php.net/manual/en/function.mysql-query.php

现在,这里说明了一个从连接数据库到选择数据的完整示例:http: //www.w3schools.com/php/func_mysql_query.asp。参见示例 1。

或者您可以查看我所做的示例代码供您参考:

<?php
    $con = mysql_connect("localhost","mysql_user","mysql_pwd");
    if (!$con)
    {
        die('Could not connect: ' . mysql_error());
    }

    $sql = "SELECT * FROM your_table";
    $query= mysql_query($sql);
    
?>
    <table>
    <tr>
    <th>ID</th>
    <th>Name</th>
    <th>Email</th>
    </tr>
    
    <?php
    //this is to display your data
    while($row=mysql_fetch_array($query))
    {
    ?>
    <tr>
         <td><?php echo $row['id']?></td>
        <td><?php echo $row['full_name']?></td>
        <td><?php echo $row['email_address']?></td>
    </tr>
    
     <?php
    }//end while
    ?>
    </table>
<?php
mysql_close($con);
?>

检索数据的另一种方法是使用 PDO。这是最好和最安全的方法。阅读以下链接以进一步向您解释:

但是,这个概念还是一样的。在执行查询之前连接到数据库。

你也可以阅读这个线程:display table columns with for loop based on user input

于 2013-01-08T06:46:17.913 回答
0
select * from table
order by plan1, plan2 desc, plan3
于 2013-01-08T04:53:59.760 回答
-2
<?php
$con = mysql_connect("localhost","root","") or die("Could not connect");
mysql_selectdb("test", $con);
$query = 'SELECT * FROM payment ORDER BY plan1,plan2,plan3';
$res = mysql_query($query, $con) or die(mysql_error());
while($row = mysql_fetch_array($res)){
    print_r($row);
}
?>
于 2013-01-08T05:01:46.963 回答