|
|
|
สอบถามเพิ่มเติมครับ เกี่ยวกับ $_POST fputs ครับ ติด error ช่วยแก้ไขทีครับ |
|
|
|
|
|
|
|
echo "คุณชื่อ". $_POST["oname"];
echo "อีเมล์". $_POST["omail"];
echo "คอมเม้นต์". $_POST["oment"];
$myfile =fopen ("feedback.txt","a");
fputs($myfile , "ชื่อ". $_POST["oname"]);
fputs($myfile , "อีเมล์". $_POST["omail"] ."<br>");
fputs($myfile , "คอมเม้นต์". $_POST["oment"] ."<br><hr>");
fclose($myfile);
print "Save Ok";
ไปอ่านพื้นฐานของ php ก่อนดีกว่าครับ ที่ error เพราะไม่ได้ครอบด้วย "
|
|
|
|
|
Date :
2010-11-06 11:46:49 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับพี่อั๋น
|
|
|
|
|
Date :
2010-11-06 13:34:52 |
By :
fcbarza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
echo "คุณชื่อ". $_POST["oname"];
echo "อีเมล์". $_POST["omail"];
echo "คอมเม้นต์". $_POST["oment"];
$myfile =fopen ("feedback.txt","a");
fputs($myfile , "ชื่อ". $_POST["oname"]);
fputs($myfile , "อีเมล์". $_POST["omail"] ."<br>");
fputs($myfile , "คอมเม้นต์". $_POST["oment"] ."<br><hr>");
fclose($myfile);
print "Save Ok";
?>
Error อยู่ดีครับ พอ submit ขึ้นแบบนี้
"); fputs($myfile , "คอมเม้นต์". $_POST["oment"] ."
--------------------------------------------------------------------------------
"); fclose($myfile); print "Save Ok"; ?>
|
|
|
|
|
Date :
2010-11-06 13:47:59 |
By :
fcbarza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<form method="post" action="fwrite.php">
<table border="0" cellpadding="0" cellspacing="1">
<tr>
<td><input type="text" name="textfield1" id="textfield1" /></td>
</tr>
<tr>
<td><input type="text" name="textfield2" id="textfield2" /></td>
</tr>
<tr>
<td><input type="text" name="textfield3" id="textfield3" /></td>
</tr>
<tr>
<td><input type="submit" value="Submit"/></td>
</tr>
</table>
</form>
Code (PHP)
echo "<br />textfield1 : ". $_POST["textfield1"];
echo "<br />textfield2 : ". $_POST["textfield2"];
echo "<br />textfield3 : ". $_POST["textfield3"];
$myfile=fopen("text.txt","a");
fputs($myfile , "textfield1 : ". $_POST["textfield1"] ."\n");
fputs($myfile , "textfield2 : ". $_POST["textfield2"] ."\n");
fputs($myfile , "textfield3 : ". $_POST["textfield3"] ."\n");
fputs($myfile , "--------------------------------------------------------------------------------\n");
fclose($myfile);
echo "OK";
เขียนตัวอย่างให้ดูเลยละกัน
|
|
|
|
|
Date :
2010-11-06 14:35:19 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|