Storing URL to location in local webserver?

  • Thread starter Thread starter Steve Grosz
  • Start date Start date
S

Steve Grosz

I am creating a product database and have images in a folder. How do
you tell access to store the location to those images, and then be able
to pass that location on to the HTML code (or I should say pull it from
the database, and have it put in the IMG SCR= location)

Steve
 
Sounds like you are looking for a different news group......

Here is one way......
Table named "MyTable", field named "picture"

You can add HTML tags to a query

SELECT "<img src='" & [picture] & "' border='0'>" AS [IMAGE]
FROM MyTable;

B Comrie
http://www.codewidgets.com
 
Back
Top