Jump to content

Recommended Posts

I have my images in one table, then the data in another. I am trying to cross reference the image to see if the data exists, if it doesn't, I want to delete the image in the table, and the image itself. I wrote a script, but for some reason it doesn't seem to be working. Can anyone tell me what I'm doing wrong?

 

$sql = "SELECT id,mls,imagename FROM images";
        $result = mysql_query ($sql);
            while($row = mysql_fetch_array ($result, MYSQL_ASSOC))
        {
$id = $row[id];
$mls = $row[mls];
$imagename = $row[imagename];


$sql = "SELECT id FROM residential WHERE  mls = '$mls'";
$result=mysql_query($sql);
$count=mysql_num_rows($result);
if($count==0){
mysql_query("DELETE FROM images WHERE mls = '$mls'");
$path = "/home/endtek/public_html/images/mlsimages/imls/$imagename";
if (file_exists($path)) {
unlink($path);
}
}//end count=0
}//end while

Link to comment
https://forums.phpfreaks.com/topic/56419-deleting-unneeded-images-help/
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.