php fputs() function - how to write an open file in php

php fputs() function - how to write an open file in php


fputsFunction.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>php fputs() function - how to write an open file in php</title>
</head>

<body>
    <h2 style="color:OrangeRed; font-style:italic">php fputs() function example:<br /> how to write an open file</h2>
    <hr width="325" align="left" color="Orange" />
    <br />

<?php

 // open the file
 $file=fopen("testfputs.txt","w");
 
 echo fputs($file,"text writen by fputs function.");
 
 //close the file.
 fclose($file);

?>
</body>
</html>