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

  • SEARCH
  • Home
  • 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 7622175
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T04:23:11+00:00 2026-05-31T04:23:11+00:00

I am having issues trying to access a submitted image from a form on

  • 0

I am having issues trying to access a submitted image from a form on the next page.

Here is my php in my html.

I am looping through a folder of images and echoing them onto the page.

<form action = "Order_Form.php"
    method = "post"
    enctype = "multipart/form-data">
<?php
    $files = glob("images/*.*");
    $count = 0;


for ($i=0; $i<count($files); $i++)
{ 
 $num = $files[$i]; 

    if($count == 4){
      echo "<br>";
      $count = 0;
    }
    $count++;


    echo '<input type="image" src="'.$num.'" 
    alt="img"  name="image" class = "galImgs" value="submit"  />';
}


?>
</form>

And now on submit I proceed to Order_Form.php

I want to display the picture the user clicked/submitted to the page.
I have been trying with

      $nm = $_POST['image'];      
      echo '<img src="/files/images/.$nm" class= "image"/>';

Im pretty sure it has to be something simple, but after much googling and trial & error I can’t seem to figure this out.

Any help would be appreciated. Thank you.

  • 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-05-31T04:23:13+00:00Added an answer on May 31, 2026 at 4:23 am

    The value of your button will be that of it’s value attribute, or always Submit.

    Use an array of images in the $_POST by appending [$num] to the input name attribute.

    echo '<input type="image" src="'.$num.'" 
        alt="img"  name="image[' . $num . ']" class = "galImgs" value="submit"  />';
    

    This will send the input image to $_POST as an array which looks like

    // Suppose two of them (22 & 14) were clicked (which isn't actually possible but illustrates it)
    // The values are always "submit" but the keys are useful to you.
    array(1) {
      ["image"]=>
      array(2) {
        [22]=>
        string(6) "submit"
        [14]=>
        string(6) "submit"
      }
    }
    

    Then when you retrieve it from $_POST, you know which has been clicked:

    foreach ($_POST['image'] as $im=>$num) {
       // The array key holds the image number
      echo '<img src="/files/images/' .$im .'" class= "image"/>';
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am having a few issues when people are trying to access a MySQL
I am having some issues trying to convert a double to C++ string. Here
Having an issue with random individuals trying to access an intranet site with a
I am having issues with trying to convert an UTF-8 string to unicode. I
I'm having issues when trying to call a MySQL (5.0.77) stored procedure with parameters,
I am having some serious issues trying to tweak my layout in a table.
I'm just trying to get started with NDjango but am having issues running a
I'm trying to learn C++ currently, but I'm having issues with the code below.
I'm trying to get started with twitter4r but I'm having some issues: Why I
I'm trying to experiment with xampp. After having some space issues, I wanted to

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.