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
https://forums.phpfreaks.com/topic/116290-image-uploading/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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