|
|
|
ถ้าผมจะเขียนโค้ดแนวนี้ $p_name=$_POST['p_name']; จะหาศึกษาได้จากที่ไหนครับรู้สึกว่าเขียนสั้นดี |
|
|
|
|
|
|
|
PHP Post ($_POST,$HTTP_POST_VARS)
ตัวอย่าง
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<form action="phpMySQLAddSave.php" name="frmAdd" method="post">
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="160"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="70"> <div align="center">Budget </div></th>
<th width="70"> <div align="center">Used </div></th>
</tr>
<tr>
<td><div align="center"><input type="text" name="txtCustomerID" size="5"></div></td>
<td><input type="text" name="txtName" size="20"></td>
<td><input type="text" name="txtEmail" size="20"></td>
<td><div align="center"><input type="text" name="txtCountryCode" size="2"></div></td>
<td align="right"><input type="text" name="txtBudget" size="5"></td>
<td align="right"><input type="text" name="txtUsed" size="5"></td>
</tr>
</table>
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>
Ref : PHP MySQL Add/Insert Record
|
|
|
|
|
Date :
2009-07-30 11:40:55 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมไม่รู้ว่าพี่ๆเข้าใจคำถามหรือป่าวนะครับ ผมเรียกไม่ถูกอะครับว่าการเขียนแนวนี้เรียนว่าการเขียนแบบอะไร
|
|
|
|
|
Date :
2009-07-30 11:41:07 |
By :
giroo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้คำสั่ง extract (etract type = EXTR_SKIP ปลอดภัยกว่าตัวอื่น) สั้นกว่าเขียนแบบ hardcode เยอะครับ
<?php
//จำลองตัวแปร
$_POST = array(
'p_name'=>'doraemon',
'p_detail'=>'xxx',
'p_price'=>'23423'
);
//3 บรรทัด
//$p_name=$_POST['p_name'];
//$p_detail=$_POST['p_detail'];
//$p_price=$_POST['p_price'];
//1 บรรทัด
extract($_POST,EXTR_SKIP);
echo $p_name,',',$p_detail,',',$p_price;
?>
|
|
|
|
|
Date :
2009-07-30 14:46:37 |
By :
num |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|