01.
<?
02.
$strFileName
=
"thaicreate.txt"
;
03.
$objFopen
=
fopen
(
$strFileName
,
'a'
);
04.
$strText1
=
"I Love ThaiCreate.Com Line1\r\n"
;
05.
fwrite(
$objFopen
,
$strText1
);
06.
$strText2
=
"I Love ThaiCreate.Com Line2\r\n"
;
07.
fwrite(
$objFopen
,
$strText2
);
08.
$strText3
=
"I Love ThaiCreate.Com Line3\r\n"
;
09.
fwrite(
$objFopen
,
$strText3
);
10.
11.
if
(
$objFopen
)
12.
{
13.
echo
"File writed."
;
14.
}
15.
else
16.
{
17.
echo
"File can not write"
;
18.
}
19.
20.
fclose(
$objFopen
);
21.
?>