Jump to content

[SOLVED] upload file, rename, and restrict size.


adamlacombe

Recommended Posts

I have this script:

<?php
if($_SESSION['id']){
?>

<form action="user.php?action=avatar" method="post" enctype="multipart/form-data">
<div class="header">Upload Avatar</div><br />
<div class="content">

Avatar:<br />
<input name='tuploaded' type='file' /><br />

<input type="submit" name="update" value="Upload">
</form>
</div>
<?
if($_POST[update]){

$ttarget1 = "avatars/";
$ttarget2 = $ttarget1 . basename( $_FILES['tuploaded']['name']);

	$tfile=($_FILES['tuploaded']['name']);
	$sql3 ="UPDATE `users` SET `avatar`='$tfile' WHERE `id`='".$_SESSION['id']."'";
	$res3 = mysql_query($sql3) or die(mysql_error());

if(move_uploaded_file($_FILES['tuploaded']['tmp_name'], $ttarget2)){

echo "<script language=\"Javascript\" type=\"text/javascript\">
alert(\"Your Avatar has been successfully uploaded!\"); 
window.location=\"index.php\";
</script>";
}

}
}else{
echo "<div class='error'>Please log in first</div><br />";
}
?>

 

but I want to make it so when a user uploads an avatar it is renamed and uploaded as their username and I also want to make sure the file is under 1mb.

 

How would i go about doing this?

Link to comment
Share on other sites

ooh ok. I looked at it and im still very confused about how to do it,

this is what I came up with after reading it:

<?php
if($_SESSION['id']){
?>

<form action="user.php?action=avatar" method="post" enctype="multipart/form-data">
<div class="header">Upload Avatar</div><br />
<div class="content">

Avatar:<br />
<input name='tuploaded' type='file' /><br />

<input type="submit" name="update" value="Upload">
</form>
</div>
<?
if($_POST[update]){

$ttarget1 = "avatars/";
$ttarget2 = $ttarget1 . basename( $_SESSION['id'].jpg);

	$tfile=($_SESSION['id'].jpg);
	$sql3 ="UPDATE `users` SET `avatar`='$tfile' WHERE `id`='".$_SESSION['id']."'";
	$res3 = mysql_query($sql3) or die(mysql_error());

if(move_uploaded_file($_FILES['tuploaded']['tmp_name'], $ttarget2)){

echo "<script language=\"Javascript\" type=\"text/javascript\">
alert(\"Your Avatar has been successfully updated!\"); 
window.location=\"index.php\";
</script>";
}

}
}else{
echo "<div class='error'>Please log in first</div><br />";
}
?>

 

it renames it to the users id but when it uploads it does not say for example 1.jpg it leaves out the period.

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.