Hi
I am creating a web page which allows visitors to upload images. I am then resizing and renaming the images. I would like to have the visitor validate the resized image and added info before proceeding (giving them chance to resubmit).
How can I insert the image into the correct size cell in a dynamic web page using a php variable. (I am renaming to a standard format relating to the name of the uploader John_Smith01.jpg etc. This name is created using the PHP variables.
As all this is done at run time I do not know the name of the files beforehand, therefore cannot use the <img src "path name"> as path name is a php variable
eg. $folder.$name
I have tried variations of
<img src=<?php$folder.$name?></img>;
Many Thanks in advance
Dave