Passing file name to other php

  •  10-11-2011, 10:52 AM

    Passing file name to other php

    I have the uploader portion working fine but I'm trying to get the filename(s) passed to my post form
     
    <form action="./upload.php" id="form1" method="POST">
     
    then in my upload.php would like to do something like
     <img src='http://mywebsite/uploads/<?php echo $_POST["processedlist"]; ?>
     
    But that doesn't work gives me the GUI names all combined how can I get individual file names passed and how handle multiple?
View Complete Thread