how to set avatar to my profile page .anyone help me for set my avatar image path in my profile page.
<?php
require 'connect.php';
$userg = mysql_query("SELECT avatar FROM members") or die("Failed to fetch your details.");
if (isset($_SESSION['MM_Username']))
{
echo "Welcome ".$_SESSION['MM_Username'];
echo "<img src=".mysql_result($userg,0,"avatar" )." width=200 height=200>";
}
?>