|
|
|
พี่ครับช่วยสอนหน่อยนะครับ ฟอร์มขอเพลงอะ มันส่งไป html ไง |
|
|
|
|
|
|
|
ตัวอย่างการ write text file ครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & writefile</title>
</head>
<body>
<?
$strFileName = "thaicreate.txt";
$objFopen = fopen($strFileName, 'w');
$strText1 = "I Love ThaiCreate.Com Line1\r\n";
fwrite($objFopen, $strText1);
$strText2 = "I Love ThaiCreate.Com Line2\r\n";
fwrite($objFopen, $strText2);
$strText3 = "I Love ThaiCreate.Com Line3\r\n";
fwrite($objFopen, $strText3);
if($objFopen)
{
echo "File writed.";
}
else
{
echo "File can not write";
}
fclose($objFopen);
?>
</body>
</html>
Go to : PHP fopen(),fwrite() write text file
|
|
|
|
|
Date :
2011-04-17 08:52:41 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ออ ขอบคุณมากครับ
|
|
|
|
|
Date :
2011-04-17 08:59:45 |
By :
peerapon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|