Jump to content

Echo an image.


deansaddigh

Recommended Posts

This is really simple i believe, i just need to know how to echo out an image that i have in my db.(image location)

 

I have the following code

 

<?php  echo "Welcome back:" . " " ;
                   echo $_SESSION['name'];

			/*get the session email*/
			$email =$_SESSION['email'];

			//build sql statement to get user avatar
			$query = "SELECT User_id FROM user WHERE Email = '$email'"; 	
			$result = mysql_query($query,$conn)	
			or die ("Unable to perform query");

//Retrieve the data that is stored in the $query array
$row= mysql_fetch_array($result);
$userid = $row['User_id'];	

		//use the user id in the avatar table to bring back the correct avatar path
		$query = "SELECT Avatar_path FROM avatar WHERE User_id ='$userid'";
		$result = mysql_query($query, $conn)
		or die ("Unable to perform query");

		//retrieve user idea from array

		$row= mysql_fetch_array($result);
		$avatar_path =$row['Avatar_path'];
		echo $avatar_path;



		?>

 

im assuming the echo $avatar_path needs to be within an image tag or something??

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/163218-echo-an-image/
Share on other sites

Im now getting undifined index errors, but i cant find the problem, it seems like my code is fine, or i cant find the issue.

 

<?php
session_start();
if (isset($_SESSION['email']) == false) 
{
	header("Location:../index.php");
	exit();
}

include '../db/connection.php';
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="icon" type="image/gif" href="site icon/animated_favicon1.gif"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Lifey/Home</title>
<!-- Css style sheet-->
<link href="css/user.css" rel="stylesheet" type="text/css" />
</head>

<body>
<!--top links -->
<?php include "includes/homepage_top_nav.php";?>

<div id="left_contents">
    	<div id="topimage"></div>
		<div id="BodyColumns">
  
			<?php  echo "Welcome back:" . " " ;
               	 echo $_SESSION['name'] . "<br />"; 

			/*get the session email*/
			$email =$_SESSION['email'];

			//build sql statement to get user avatar
			$query = "SELECT User_id FROM user WHERE Email = '$email'"; 	
			$result = mysql_query($query,$conn)	
			or die ("Unable to perform query");

			//Retrieve the data that is stored in the $query array
			$row= mysql_fetch_array($result);
			$userid = $row['User_id'];	

			//Get the avatar path
			$query = "SELECT Avatar_path, Avatar_name FROM avatar WHERE User_id ='$userid'";


			$result = mysql_query($query, $conn)
			or die ("Unable to perform query");

			//retrieve user idea from array

			$row= mysql_fetch_array($result);
			$avatar_path =$row['Avatar_path'];
			$avatar_name =$row['Avatar_name'];

			echo "<img src='".$avatar_path. $avatar_name ."'>";


			?>

      </div>
      <div id="bottomimage"></div>
</div>
    
<!-- Container div-->
<div id="container">
    	  
      <div id="contents"> 
      	<div id="logo"></div>
        	<?php
            	//If student fail to login display error on the homepage
                if (isset($_GET['message']))
					{
                       		 echo $_GET['message'];     
                    	}
                   
           	?>	
            	
        <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
             
           <?php include"includes/homepage_footer_links.php";?>
              
     	</div>
        
   


       
  <!-- End Container div-->  

    
  </div>
    


</body>
</html>

 

Any ideas would be gratefully appreciated

 

Link to comment
https://forums.phpfreaks.com/topic/163218-echo-an-image/#findComment-861207
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.