how to create file using php and write some thing

$filename="bikash.txt";
$fx=fopen($filename,a);
$string="heloo bikash";
fwrite($fx,$string);
fclose($fx);

Comments

Popular posts from this blog

Attempting to understand handling regular expressions with php