Jump to content

Help with upload script.


g3mma111

Recommended Posts

I have this script which resizes an uploaded picture, saves it to a folder, and then saves its url to a database. I still want to do this but i also want to keep the original image and save that to a different folder called horiginalpic/ and then save the url of that to the database. If any one could help it would be appreciated.

 

$host = "***************";
$user = "****";
$pass = "******";
$db = "********";
$connection = mysql_connect($host, $user, $pass) or die ("Unable to connect!");
mysql_select_db($db) or die ("Unable to select database!");
$query = "SELECT * FROM members where (username = '$ses_username')";
$result = mysql_query($query) or die ("Error in query: $query. ".mysql_error());
$obj=mysql_fetch_object($result);
$hname=$obj->hname; 

$uploadedfile = $_FILES['uploadfile']['tmp_name'];

$src = imagecreatefromjpeg($uploadedfile);
list($width,$height)=getimagesize($uploadedfile);
$newwidth=100;

$newheight=($height/$width)*100;
$tmp=imagecreatetruecolor($newwidth,$newheight);
imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,$width,$height);

$thumbfilename = "hthumbpic/". $ses_username.$hname. ".jpg";

imagejpeg($tmp,$filename,100);
imagedestroy($src);
imagedestroy($tmp);
    
$query = "
INSERT INTO `".$pics."` (
    `username`
,     `thumburl`
) VALUES (
    '".$ses_username."'
,     '".$thumbfilename."'
)";

if(mysql_query($query)){
    echo 'Query executed successfully';
} else {
    echo 'Query failed';
}

mysql_close();

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.