Jump to content

Recommended Posts

I'm trying to delete images from a folder if they don't exist in a table
This is what I have so far, but it deletes ALL of the images

Getting this warning as well

Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in /home1/americans/public_html/stampfair.com/users/aimage_test.php on line 16

Because it is deleting ALL of the images, I'm guessing the db query result is failing is failing

Note that if I run the query alone, it returns the expected result

$link = mysqli_connect($dbhost, $dbuser, $dbpass) or die("Unable to Connect to '$dbhost'");

$like = scandir('sfbuyer');     // IMAGE FOLDER
$query = "SELECT substr(value,42) FROM ppbv79_listings_media WHERE value like '%stampfair.com/users/russromei/%'"; // GETS THE FILE NAME

foreach ($like as $thisFile) {
$rs = mysqli_query($link,$query);
if (!mysqli_num_rows($rs)) {    // I KNOW THIS PART IS WRONG SHOULD BE SOMETHING LIKE if($thisFile != $like -- DOESN'T WORK
if($thisFile != "." and $thisFile != ".."){  // OR SHOULD BE HERE -- CAN'T GET IT TO ECHO VALUES SO WORKING BLIND
unlink ('sfbuyer/' . $thisFile);

}

}
}

Link to comment
https://forums.phpfreaks.com/topic/305953-deleting-images-from-folder/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.