<?php
$path=$row['path'];
?>
<img src="<?php$path?>" alt="thing" >
please tell if there is any other way , this is not working
<?php
$path=$row['path'];
?>
<img src="<?php$path?>" alt="thing" >
please tell if there is any other way , this is not working
I think you're missing a space here :
<img src="<?php echo $row['path']; ?>" alt="thing" >