On Fri, 30 Jul 2004 23:46:22 +0200, Schalk Neethling
<[EMAIL PROTECTED]> wrote:
> Why would the following line not be parsed in a PHP page?
> 
> <img src="<?php echo $row_ads['full_img']; ?>" width="87" height="120" />
> 

Are you saying that all other PHP code in the page is run, but this isn't?

This is how I would code that:

<?php
echo '<img src="'.$row_ads['full_img'].'" width="87" height="120" />';

-- 
DB_DataObject_FormBuilder - The database at your fingertips
http://pear.php.net/package/DB_DataObject_FormBuilder

paperCrane --Justin Patrin--

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to