Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8871593
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T18:01:34+00:00 2026-06-14T18:01:34+00:00

I’m trying to get an image gallery management removal process working in PHP. I’ve

  • 0

I’m trying to get an image gallery management removal process working in PHP. I’ve been stumbling on how I could update the list order so they stay in the same order after the removal.

I have an associative array ($images) where the key is the same as the ‘order’ value this number defines the placement in the gallery. I also have a list of the order numbers which should be removed this removes each image by identifying it with the order number.

$images format

array(28) {
[1]=>
  array(5) {
    ["gallery_id"]=>
    string(2) "71"
    ["property_id"]=>
    string(1) "3"
    ["picture"]=>
    string(17) "imgname.jpg"
    ["order"]=>
    string(1) "1"
    ["alt_text"]=>
    string(14) "discription"
  }
[2]=>
  array(5) {
    ["gallery_id"]=>
    string(2) "83"
    ["property_id"]=>
    string(1) "3"
    ["picture"]=>
    string(17) "imgname.jpg"
    ["order"]=>
    string(1) "2"
    ["alt_text"]=>
    string(14) "discription"
  }
So on... how ever large the list might be.

List of images to remove

$removedImgs

array(2) {
    [0]=> string(1) "1"
    [1]=> string(1) "3"
}

The above shows images 1 and 3 will be removed from the gallery

Current:    1 2 3 4 5 6 ...
Removal:    2 4 5 6
            | | | |
Reordering: 1 2 3 4

The actual removal code

// Loop though with each image and remove the ones posted from the list
foreach ($_POST['orderID'] as $removeImg)
{
    // Store each removed images order id
    $removedImgs[] = $removeImg;

    // If we're removing images create a list of the image paths to
    // unlink the files later.
    if (isset($images[$removeImg]))
    {
        $unlinkList[] = $imgPath . $images[$removeImg]['picture'];
        $unlinkList[] = $imgPath . 'thumbs/thumb' . $images[$removeImg]['picture'];
    }

    // $images should only contain the ones that we haven't removed.
    unset($images[$removeImg]);

    // Update the image order
    foreach ($images as $key => &$img)
    {
        if ($key > $removeImg)
        {
            (int)$img['order']--;
        }
    }
    var_dump($images);
    echo "\n\n==========\n\n";
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T18:01:35+00:00Added an answer on June 14, 2026 at 6:01 pm

    If you have control over when the images are removed, you’d have a much easier time updating the orders at that time.

    function removeImage($images, $imgName)
    {
        $removedImgNum = $images[$imgName]['order'];
        $images[$imgName] = undefined; // or delete, etc
    
        foreach ($images as $img)
        {
            if ($img['order'] > $removedImgNum)
                $img['order']--;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm trying to create an if statement in PHP that prevents a single post
Basically, what I'm trying to create is a page of div tags, each has
I am trying to understand how to use SyndicationItem to display feed which is
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
this is what i have right now Drawing an RSS feed into the php,
I am trying to render a haml file in a javascript response like so:
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.