Jump to content

PHP and deleting files


Jurik

Recommended Posts

Hi guys, im running a bit of code that is to be designed to delete entrys from a MYSQL database as well as the file which is stored in a folder known as videos, well I got the code deleting the entry in the database but it is not delete the file in the folder, any ideas on how I go about doing this? Heres the code im using

[quote]<?php

if (isset($_GET['ID'])) {
$vidID = $_GET['ID'];
} else {
$vidID = NULL;
}

$query = "DELETE FROM videos WHERE ID = ('$vidID')";

$result = mysql_query($query);

echo "The video has been deleted.";

?>[/quote]

Any help would be great
Link to comment
https://forums.phpfreaks.com/topic/23068-php-and-deleting-files/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.