Link to home
Start Free TrialLog in
Avatar of peter Ojeda
peter Ojeda

asked on

Echo images using file system

Hi experts I have a php form that is submitting the results to my sql server table. I have a column called "FILES" and it is used for exactly that, and is a varchar type. I am able to submit the file name to the database, as well as the actual file to my created folder, but now I am attempting to echo that image into another form. Right now I am using the code below and am only echoing the file name that is stored in sql server.
 <td align="right"><?php echo $result["FILES"];?></td>  

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Chris Stanyon
Chris Stanyon
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of peter Ojeda
peter Ojeda

ASKER

Thankyou Chris this worked