hi there....
i need some guidance here with
this code?
Code: ( text )
1.
$myFile = "testFile.t xt";
2.
$fh = fopen($myFile, 'w') or die("can't open file");
3.
fclose($fh);
and this one too
Code: ( text )
1.
$myFile = "testFile.t xt";
2.
unlink($myFile) ;
and my question is...
1) can i use this code to delete/unlink my file from mysql database?
2)or can i use the common delete code to delete my file?
i need some guidance here with
this code?
Code: ( text )
1.
$myFile = "testFile.t xt";
2.
$fh = fopen($myFile, 'w') or die("can't open file");
3.
fclose($fh);
and this one too
Code: ( text )
1.
$myFile = "testFile.t xt";
2.
unlink($myFile) ;
and my question is...
1) can i use this code to delete/unlink my file from mysql database?
2)or can i use the common delete code to delete my file?
Comment