|
|
|
ผมจะทำ http://xxxxxxxx.com/index.php?name=username ยังไงหรอครับ |
|
|
|
|
|
|
|
อืมๆ สงสัยต้องรองหาหนังสือมาอ่านแล้ว ทุกทีใช้แต่สำเร็จรูป
http://www.tooktaall.com
------------------------------
|
|
|
|
|
Date :
2012-04-11 09:14:09 |
By :
tooktaall |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันไม่ต่างอะไรกับการแก้ไขข้อมูลในบทเรียนหรอกครับ แค่ไม่ต้องยัดใส่ form element แค่นั้นเอง
|
|
|
|
|
Date :
2012-04-11 10:41:21 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Parse error: syntax error, unexpected T_VARIABLE in C:\AppServ\www\test\test.php on line 4
Code (PHP)
<?php
include "config.php";
$id = $objResult['user_id']
$srtSQL = "SELECT * FROM TABLE_PROFILE WHERE User_ID = '$id' ";
?>
<a href="http://site.com/index.php?name=<?=$objResult["username"] ?> ">
<table border="1" style="width: 300px">
<tbody>
<tr>
<td width="87"> ชื่อ</td>
<td width="197"><?=$objResult["Name"];?>
</td>
</tr>
<tr>
<td> E-mail</td>
<td><?=$objResult["email"];?></td>
</tr>
</tbody>
</table>
|
ประวัติการแก้ไข 2012-04-11 11:10:38 2012-04-11 11:11:25 2012-04-11 11:12:11 2012-04-11 11:17:01
|
|
|
|
Date :
2012-04-11 11:06:13 |
By :
nook00 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อย่าบอกแค่ว่ามัน error ครับ เวลาถามช่วยบอกด้วยว่าไปทำอะไรมา แล้วมัน error ว่ายังไง คุณจะได้คำตอบเร็วขึ้นหลายเท่า
|
|
|
|
|
Date :
2012-04-11 11:12:24 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดันๆ อึบๆ ครับ ขอบคุณครับ
|
|
|
|
|
Date :
2012-04-11 11:25:24 |
By :
nook00 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ได้ใส่ ;
|
|
|
|
|
Date :
2012-04-11 11:52:20 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
include "config.php";
$id = $objResult['user_id'];
$srtSQL = "SELECT * FROM TABLE_PROFILE WHERE User_ID = '$id' ";
?>
<a href="http://site.com/index.php?name=<?=$objResult["username"]?>">
<table border="1" style="width: 300px">
<tbody>
<tr>
<td width="87"> ชื่อ</td>
<td width="197"><?=$objResult["Name"];?>
</td>
</tr>
<tr>
<td> E-mail</td>
<td><?=$objResult["email"];?></td>
</tr>
</tbody>
</table>
|
|
|
|
|
Date :
2012-04-11 13:06:17 |
By :
gogo01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันยังดึงมาไม่ได้อะครับ ปัญหา error แก้ได้แล้วขอบคุณมากครับ น้ำใจเยอะดีบอร์ดนี้
ผมมี ฐานข้อมูลผมมี
UserID l Username l Password l Name l Email l Status
ผมจะดึงเอา Username มาเป็น http://site.com/test.php?name=xxxxx <---- xxx คือ username อะครับ พอดีเพิ่งหัดทำได้ไม่กี่วัน
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
</body>
</html>
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("test");
$strSQL = "SELECT * FROM member";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<a href="test1.php?name=<?=$objResult["username"]?>">
<table border="1" style="width: 300px">
<tbody>
<tr>
<td width="87"> ชื่อ</td>
<td width="197"><?=$objResult["Name"];?>
</td>
</tr>
<tr>
<td> E-mail</td>
<td><?=$objResult["email"];?></td>
</tr>
</tbody>
</table>
|
ประวัติการแก้ไข 2012-04-12 03:45:20
|
|
|
|
Date :
2012-04-11 17:29:41 |
By :
nook00 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดันๆ
|
|
|
|
|
Date :
2012-04-11 23:43:31 |
By :
nook00 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หน้าที่ต้องการแสดงชื่อ
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("test");
$strSQL = "SELECT * FROM member";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">ชื่อของคุณ </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["username"];?></div></td>
<td><a href="test1.php?name=<?=$objResult["username"]?>">กดตรงนี้เพื่อไปหน้าUserของคุณ</a></td>
</tr>
</table>
</body>
</html>
หน้าที่ต้องการแสดงหลังจาก link
Code (PHP)
[php]<?
$username = $objResult[username];
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("test");
$strSQL = "SELECT * FROM member where '$username' ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">ชื่อของคุณ </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["username"];?></div></td>
<td><?=$objResult["sername"];?></td>
</tr>
</table>
<?
}
?>
|
ประวัติการแก้ไข 2012-04-12 08:02:01
|
|
|
|
Date :
2012-04-12 07:01:58 |
By :
time.toon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันยังดึงมาไม่ได้อะ
โค้ดส่ง
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("test");
$strSQL = "SELECT * FROM member";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">ชื่อของคุณ </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{ //ตรงนี้ไม่มีตัวปิด
?>
<tr>
<td><div align="center"><?=$objResult["username"];?></div></td>
<td><a href="1.php?name=<?=$objResult["username"]?>">กดตรงนี้เพื่อไปหน้าUserของคุณ</a></td>
</tr>
</table>
</body>
</html>
หน้าที่ต้องการให้แสดงลิ้ง
Code (PHP)
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<?
$username = $objResult["Username"];
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("test");
$strSQL = "SELECT * FROM member where '$Username' ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">ชื่อของคุณ </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["Username"];?></div></td>
<td><?=$objResult["Name"];?></td>
</tr>
</table>
<?
}
?>
|
ประวัติการแก้ไข 2012-04-12 12:13:38 2012-04-12 12:14:27 2012-04-12 12:15:16
|
|
|
|
Date :
2012-04-12 12:12:56 |
By :
nook00 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|