ram4nd Posted November 3, 2008 Share Posted November 3, 2008 This is my code: <?php $id = $_GET["ID"]; include("config.php"); $query = mysql_query("SELECT img, type FROM Images WHERE id='".$id."'"); $row = mysql_fetch_array($query, MYSQL_NUM); $content = $row[0]; header("Content-type: image/".$row[1]); echo $content; ?> I just need to add a resizing feature. Link to comment https://forums.phpfreaks.com/topic/131239-resize-image-from-blob/ Share on other sites More sharing options...
ram4nd Posted November 3, 2008 Author Share Posted November 3, 2008 bump Link to comment https://forums.phpfreaks.com/topic/131239-resize-image-from-blob/#findComment-681394 Share on other sites More sharing options...
ram4nd Posted November 5, 2008 Author Share Posted November 5, 2008 bump Link to comment https://forums.phpfreaks.com/topic/131239-resize-image-from-blob/#findComment-683076 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.