I have used the following code to delete a file:
$ppp = "image.jpg";
chmod($ppp,0777);
unlink($ppp);
and I got the following message:
Warning: chmod(): Operation not permitted in /home/www/del.php on line 14
Warning: unlink(image.jpg): Permission denied in /home/www/del.php on line 15
How can I make it work pls?