I would like to ask how to display an img src like this:
<html>
<?php
$extradata = (Data for this come from database that I decode)
$profilepicturefinalpath = "/folder/folder/".$extradata;
echo '<img src="<?php echo $profilepicturefinalpath ?>"/>';
?>
</html>
What should I do, Is this possible?
Please help, I am just a newbie