Any idea why my image is not showing with the following code:
<?php
require_once 'library/config2.php';
$result = mysql_query('SELECT pd_thumbnail FROM tbl_product WHERE pd_id =1') or exit(mysql_error());
$row = mysql_fetch_assoc($result); ?>
<img src="<?php echo $row['pd_thumbnail']?>">
Any help will be cool. Thx