Jump to content

Image uploading


whiteboikyle

Recommended Posts

the form

	<form action='process.php' name='form1' method='post'>
  <table width='470' border='0' cellspacing='1' cellpadding='0' id='profile_table'>
  	<tr bgcolor='#333333'>
	  <td width='100' height='25' id='profile_table'><div align='right'>Main Game: </div></td>
	  <td height='25' id='profile' style='padding-left:30px;'>
	  <input name='MAX_FILE_SIZE' value='2097152' type='hidden'>
	  <input name='image' type='file' size='34' accept='image/jpeg, image/gif, image/png'>
	  </td>
	</tr>
</table>
</form>

 

 

 

 

process.php

 

		if (isset($_FILES['image']) && $_FILES['image']['size'] > 0) { 

		// Temporary file name stored on the server
		$tmpName  = $_FILES['image']['tmp_name'];

		// Read the file 
		$fp      = fopen($tmpName, 'r');
		$data = fread($fp, filesize($tmpName));
		$data = addslashes($data);
		fclose($fp);
		$config->query("UPDATE `members` SET picture = '$data' WHERE username = '$username'");
	}

 

 

but the isset($_FILES['image']) is not working its saying its not set..

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.