Reputation: 137
I have this code for showing the profile picture of the user who has logged in:
<ul>
<li>
<img src="images/<?php echo $row_user['profilepic']; ?>">
</li>
...
</ul>
How do I include a deafultimage.jpg
if the user has no profile picture?
Upvotes: 2
Views: 419