i am working on one project in which there is one form filled by user and that value displayed in another page all data i get in another page but image can't display on that page only image name is displays i want to display image so how can i do this plz help me it's urgent.Here's my code:\[code\]mysql_connect("localhost","root","");mysql_select_db("my_db");$p_name=$_POST['pname']; $p_birthdate=$_POST['pbirthdate'];$p_city=$_POST['pcity'];$p_country=$_POST['pcountry'];$p_email=$_POST['pemail'];$p_photo=$_POST['pphoto'];<table> <ul> <tr> <td><li class="image"><img src="http://stackoverflow.com/questions/14057718/<? echo $p_photo; ?>" /></li></td> <li class="text"> <td class="label"> Name: <? echo $p_name; ?></br> Birth Date: <? echo $p_birthdate; ?></br> City: <? echo $p_city; ?></br> Country: <? echo $p_country; ?></br> E-Mail: <? echo $p_email; ?></br> </td> </li> </tr> </ul></table>\[/code\]