从数据库中检索数据

时间:2014-07-27 11:20:51

标签: php

我有一个名为products的数据库,我想用php从数据库中检索数据,我从未做过php。我是一个初学者,我试过在这个论坛中使用其他答案的信息,但我仍然被卡住了。非常感谢

我使用了Nemanja Adamov的代码并且效果很好。

2 个答案:

答案 0 :(得分:0)

如果您使用MySQL,我建议您使用mysqli_*

顺便说一句,看看PDO

祝你好运!

答案 1 :(得分:0)

这是与数据库连接并获取结果的代码:
1.数据库连接。

<?php
    $host = "localhost";
    $username = "your_username";
    $password = "your_password";
    $db_name = "your_db_name";
    $connection = mysql_connect( $host, $username, $password ) or die ( "Error:: [1]" );
    mysql_select_db( $db_name, $connection ) or die ( "Error:: [2]" );
?>

Wrapp在“db_conn.inc”中的代码之上,稍后如果你想要与数据库(更新/插入/读取)有关,只需执行 include'db_conn.inc';

2.获取结果。

<?php
    include( 'db_conn.inc' );
    $query = "select `id`,`name` from `mytable`"; //query...
    $result = mysql_query( $query, $connection ); //make query request
    if ( $result ) { //if  result has any results
        print '<table>
                <tr>
                    <td>ID</td>
                    <td>Name</td>
                </tr>';
        while ( $row = mysql_fetch_array( $result ) ) {
        print '<tr>
                    <td>' . $row[0] . '</td>
                    <td>' . $row[1] . '</td>
               </tr>';
        }
    }
        print '</table>';

    mysql_close($connection); //close connection
?>

如果它能解决您的问题,请随意将此答案视为已接受。