|
|
|
จะทำการดึงข้อมูลทุกฟีดมาแสดง คือผมจะทำในส่วนของ admin ที่จะแสดงรายชื่อทั้งหมดของสมาชิกมาแสดงอะครับ |
|
|
|
|
|
|
|
select * column และก็วนแสดงทุกฟิวส์ครับ ตามบทเรียน อิอิ
|
|
|
|
|
Date :
3 พ.ย. 2551 11:14:58 |
By :
อิอิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เปลี่ยนแต่ชื่อฐานข้อมูล
<?
$name_db = "database"; // ชื่อฐานข้อมูล
$con=mysql_connect("localhost","root","") or die ("could not connect");
$table = mysql_list_tables($name_db,$con);
$num = mysql_num_rows($table);
if($tablename)
{
$dbquery = mysql_query("SELECT * FROM $tablename");
$num_fields = mysql_num_fields($dbquery);
$num_rows = mysql_num_rows($dbquery);
}
?>
<form method="post">
<table align="center" border="0" cellpadding="1" cellspacing="1">
<tr height="30">
<td colspan="<?=$num_fields?>" align="center">
<font color="#FF0000" size="4">- ดูข้อมูลใน Database -</font></td>
</tr>
<tr height="40">
<td colspan="<?=$num_fields?>" align="center">
<select name='tablename' onchange="submit()" >
<option value="">เลือกตาราง</option>
<?
for($t=0;$t<$num;$t++)
{echo"<option value=".mysql_tablename($table,$t).">".mysql_tablename($table,$t)."</option>";}
?>
</select>
</td>
</tr>
<?
if($num_fields)
{
?>
<tr bgcolor="#66CCCC">
<td colspan="<?=$num_fields?>" align="center">
<font color="#FF0000" size="3"><b>table = <?=$tablename?></b></font></td>
</tr>
<?
if($num_rows<=0)
{
?>
<tr height="30">
<td colspan="<?=$num_fields?>" align="center">
<font color="#FF0000" size="2">ยังไม่มีข้อมูอในตาราง <?=$tablename?></font></td>
</tr>
<?
}
else
{
?>
<tr bgcolor="#66CCCC">
<?
for($e=0;$e<$num_fields;$e++)
{
echo"<td align='center'><font size=2>";
echo mysql_field_name($dbquery,$e);
echo"</font></td>";
}
?>
</tr>
<?
for($y=0;$y<$num_rows;$y++)
{
$array = mysql_fetch_array($dbquery);
?>
<tr bgcolor="#66CCFF">
<?
for($r=0;$r<$num_fields;$r++)
{
echo"<td align='center'><font size=2>";
if($array[$r]){echo"$array[$r]";}else{echo"-";}
echo"</font></td>";
}
?>
</tr>
<?
}
}
}
?>
</table>
</form>
|
|
|
|
|
Date :
3 พ.ย. 2551 11:18:19 |
By :
heng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถามอีกคำถามหนึ่งครับ
เราสารถใส่ link ลงไปในตารางที่เราดึงข้อมูลมาหรือไม่ครับ
ถ้าได้แล้วต้องใส่ยังไง
ขอบคุณครับ
|
|
|
|
|
Date :
3 พ.ย. 2551 15:53:26 |
By :
Mal2s |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หมายถึงลิงค์จากข้อมูลที่ดึงมาโชว์ในตารางใช่มั้ยคะ ถ้าใช่ ลองเอาไปดัดแปลงดูค่ะ
<TD><A HREF=\"admin_order_view.php?id_order=$id_order\" TARGET=\"_blank\">$code_order</A></TD>
|
|
|
|
|
Date :
4 พ.ย. 2551 08:33:29 |
By :
sss |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|