HOME > PHP > PHP Forum > เรื่องคำสั่ง ช่วยที่นะค่ สมมุติ ฐานข้อมูลชื่อ dbhelp แล้วตารางข้อมูลชื่อ member จะเรียนฟิว name ของมาแสดงผลเป็น php ต้องเขียนยังไงค่ะ
เรื่องคำสั่ง ช่วยที่นะค่ สมมุติ ฐานข้อมูลชื่อ dbhelp แล้วตารางข้อมูลชื่อ member จะเรียนฟิว name ของมาแสดงผลเป็น php ต้องเขียนยังไงค่ะ
<?
$sql= "select * from tb_member order by field ที่เก็บ id ";
$sqlquery=mysql_db_query($dbname,$sql);
while($result= mysql_fetch_array($sqlquery)){
$id=$result['t_id']; .....ตรง t_id ของคุณเก็บอาไรก็ใส่ไป
$uname=$result[' name'];
?>
<?php
// This could be supplied by a user, for example
$firstname = 'fred';
$lastname = 'fox';
// Formulate Query
// This is the best way to perform a SQL query
// For more examples, see mysql_real_escape_string()
$query = sprintf("SELECT firstname, lastname, address, age FROM member WHERE firstname='%s' AND lastname='%s'",
mysql_real_escape_string($firstname),
mysql_real_escape_string($lastname));
// Perform Query
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
$db_selected = mysql_select_db('dbhelp ', $link);
$result = mysql_query($query);
// Check result
// This shows the actual query sent to MySQL, and the error. Useful for debugging.
if (!$result) {
$message = 'Invalid query: ' . mysql_error() . "\n";
$message .= 'Whole query: ' . $query;
die($message);
}
// Use result
// Attempting to print $result won't allow access to information in the resource
// One of the mysql result functions must be used
// See also mysql_result(), mysql_fetch_array(), mysql_fetch_row(), etc.
while ($row = mysql_fetch_assoc($result)) {
echo $row['firstname'];
echo $row['lastname'];
echo $row['address'];
echo $row['age'];
}
// Free the resources associated with the result set
// This is done automatically at the end of the script
mysql_free_result($result);
?>