Jump to content

xml noob, tables, xml and images


Guest poboy975

Recommended Posts

Guest poboy975

hi, I'm setting up a website to sell cars. I would like to use access or excel to store my product info. make model vin number etc...and also I would like to have a pic that is clickable. then export that into xml, and have it dynamically loaded into a spry table in dreamweaver. now, I can get all the car info to work, but the thumbnails dont show. just a blank area. I have searched for a solution for a while and have not found one that works. I've tried several things from this forums as well and still not working. I would like to use access because it has an export to xml, which does work as far as vehicle information goes, just not the pic. Ideally if i can get the pic to show up, I would like when its clicked a lightbox type window opens with a gallery of the other and larger pics of the vehicle. here is my site www.arglobalautobrokers.com and my xml code

<?xml version="1.0" encoding="UTF-8"?><dataroot xmlns:od="urn:schemas-microsoft-com:officedata" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xsi:noNamespaceSchemaLocation="Cars.xsd" generated="2010-11-08T11:16:51"><Cars><ID>8</ID><Make>Toyota</Make><Model>Corolla</Model><Yr>1992</Yr><Color>Blue</Color><Vin Number>1645kjdjdj</Vin Number><Price>19326.3</Price><Mileage>15362</Mileage><images>   <image>	  <thumb><img src=images/cars/goldcorolla/thumb/2521299015.jpg><a href="images/cars/goldcorolla/thumb/2521299015.jpg"></a></thumb>   </image></images></Cars>

this is html where my table is

<div class="content">					<div class="contentleft">					  <div spry:region="ds1">						<table>						  <tr>							<th spry:sort="ID">ID</th>							<th spry:sort="Make">Make</th>							<th spry:sort="Model">Model</th>							<th spry:sort="Yr">Yr</th>							<th spry:sort="Color">Color</th>							<th spry:sort="Vin_x0020_Number">Vin_x0020_Number</th>							<th spry:sort="Price">Price</th>							<th spry:sort="Mileage">Mileage</th>							<th spry:sort="Images">Images</th>						  </tr>						  <tr spry:repeat="ds1">							<td>{ID}</td>							<td>{Make}</td>							<td>{Model}</td>							<td>{Yr}</td>							<td>{Color}</td>							<td>{Vin_x0020_Number}</td>							<td>{Price}</td>							<td>{Mileage}</td>							<td>{Images}</td>						  </tr>						</table>					  </div>					  <h1> </h1></div>

not sure what else you need to help thanks

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...