Jump to content

img help


pajoo

Recommended Posts

In my registration you must upload a picture of yourself but it doesnt work.

 

Any help please?

 

<?php
include ("includes/session.php");
include ("includes/dbconnect.php");
include ("includes/functions.php");

$currID = $_SESSION['oppid'];
$query = mysql_query("SELECT img_name, img_size, img_type, img_content
					  FROM testpassers
					  WHERE id='{$currID}'
					 ", $connection);
$row = mysql_fetch_assoc($query);
$imagebytes = $row['img_content'];
$img_type = $row['img_type'];
if($img_type == "image/jpeg") {
	header('Content-type: image/jpeg');
} else if ($img_type == "image/jpg") {
	header('Content-type: image/jpg');
} else if ($img_type == "image/png") {
	header('Content-type: image/png');
} else if ($img_type == "image/gif") {
	header('Content-type: image/gif');
}
echo $imagebytes;
?>

 

Thanks!

Link to comment
https://forums.phpfreaks.com/topic/253229-img-help/
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.