How to use PHP & Resize image Thumbnails and insert to MySQL The guideline/example scripts how to using PHP and GD , Resize image Thumbnails and insert to MySQL
ShotDev Focus:
- PHP & GD (Resize image Thumbnails and insert to MySQL)
Example
php_resize_mysql1.php
<html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form name="form1" method="post" action="php_resize_mysql2.php" enctype="multipart/form-data"> <input type="file" name="fileUpload"><br> <input name="btnSubmit" type="submit" value="Submit"> </form> </body> </html>
php_resize_mysql2.php
<html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <? if(trim($_FILES["fileUpload"]["tmp_name"]) != "") { $images = $_FILES["fileUpload"]["tmp_name"]; $new_images = "thumbnails_".$_FILES["fileUpload"]["name"]; copy($_FILES["fileUpload"]["tmp_name"],"MyResize/".$_FILES["fileUpload"]["name"]); $width=100; //*** Fix Width & Heigh (Autu caculate) ***// $size=GetimageSize($images); $height=round($width*$size[1]/$size[0]); $images_orig = ImageCreateFromJPEG($images); $photoX = ImagesX($images_orig); $photoY = ImagesY($images_orig); $images_fin = ImageCreateTrueColor($width, $height); ImageCopyResampled($images_fin, $images_orig, 0, 0, 0, 0, $width+1, $height+1, $photoX, $photoY); ImageJPEG($images_fin,"MyResize/".$new_images); ImageDestroy($images_orig); ImageDestroy($images_fin); echo "Resize Successful.<br>"; //*** Insert Record ***// $objConnect = mysql_connect("localhost","root","root") or die(mysql_error()); $objDB = mysql_select_db("mydatabase"); $strSQL = "INSERT INTO files "; $strSQL .="(Thumbnails,FilesName) VALUES ('".$new_images."','".$_FILES["fileUpload"]["name"]."')"; $objQuery = mysql_query($strSQL); } ?> <a href="php_resize_mysql3.php">View files</a> </body> </html>
php_resize_mysql3.php
<html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <? $objConnect = mysql_connect("localhost","root","root") or die(mysql_error()); $objDB = mysql_select_db("mydatabase"); $strSQL = "SELECT * FROM files"; $objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]"); ?> <table width="200" border="1"> <tr> <th width="50"> <div align="center">Files ID </div></th> <th width="150"> <div align="center">Thumbnails </div></th> </tr> <? while($objResult = mysql_fetch_array($objQuery)) { ?> <tr> <td><div align="center"><?=$objResult["FilesID"];?></div></td> <td><center><a href="MyResize/<?=$objResult["FilesName"];?>"> <img src="MyResize/<?=$objResult["Thumbnails"];?>" border="0"></a></center></td> </tr> <? } ?> </table> <? mysql_close($objConnect); ?> <br> <a href="php_resize_mysql1.php">Upload Image</a> </body> </html>
Create a php file and save to path root-path/myphp/
Run
http://localhost/myphp/php_resize_mysql1.php
Screenshot
.
.
.