On Wednesday 23 October 2002 01:29, Ignatius Reilly wrote: > $image does not interpolate (surrounded by single quotes) > > You must write: > > else { echo '<p><img src="{$image}" width="201" > height="160"></p></td>'; } > > It is good hygiene to brace variables in somehow complicated statements > like these. Keeps life easier. You're still using single-quotes, so it still wouldn't work! Try any one of these: echo "<p><img src=\"$image\" width=\"201\" height=\"160\"></p></td>"; echo "<p><img src=\"{$image}\" width=\"201\" height=\"160\"></p></td>"; echo '<p><img src="' . $image . '" width="201" height="160"></p></td>'; -- Jason Wong -> Gremlins Associates -> www.gremlins.com.hk Open Source Software Systems Integrators * Web Design & Hosting * Internet & Intranet Applications Development * /* You will inherit millions of dollars. */ -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php