Webmaster Key - Discussion Forums


Welcome, Guest. Please login or register.
Did you miss your activation email?
February 08, 2012, 04:47:26 PM

Login with username, password and session length
Welceome to Forums!

Important information for guests and new members:

In order to understand the full benefits of becoming an active member of this forum, please review the following information on guest and new member restrictions. These forum changes have been prompted by an overwhelming and unreasonable amount of bot postings and incoherent guest spam messages. We wish to prevent these events from happening in the future and make our community a more comfortable place for all of our members.

For guests:

Guests are not allowed to open new topics, polls, or posts attachments.
If you wish to open up new discussions on this forum, we encourage you to register.

For new members:

New members with less than five posts are not allowed to modify additional profile information such as avatars, contact information, biographies, and signatures. However, new members are encouraged to post their own topics or reply to topics initiated by other members. Become active on the forums and 5 posts should be an easy task!

We are a diverse community with members from all over the world. We encourage new ideas and interesting conversation. Do not be afraid to post webmaster/computer-related questions or problems, as our active members are always willing to help when they are able. Interested? Join us.

+ Webmaster Key Forums
|-+ Webmaster Corner
| |-+ Site Design and Web Authoring
| | |-+ Coding Talk
| | | |-+ php image upload
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: [1] Go Down Stumble Upon! Digg It! del.icio.us! Add to Technorati! ReddIt!  Send this topic Print
Author Topic: php image upload  (Read 3055 times)
Andy
Administrator
Veteran
*****
Posts: 5 752



« on: August 08, 2005, 10:07:00 PM »

If anyone wants to know how to do it, i have worked it out!

Please state why you deserve to know  Wink
Report to moderator   Logged

Hope
Key Keeper
Veteran
*****
Posts: 1 975


P.I.T.A.


WWW
« Reply #1 on: August 09, 2005, 04:50:56 PM »

It would be interesting to know.

Please state why you deserve to know Wink
Because I am cute?  Roll Eyes Sounds like a good answer.
Report to moderator   Logged

Andy
Administrator
Veteran
*****
Posts: 5 752



« Reply #2 on: August 09, 2005, 10:17:45 PM »

OK, since you are cute:

Please save the file as upload.php
Requires PHP4 and jpeg support on server.
This code shows how to get access to uploaded image file.

Code:
<?php
if ($_REQUEST['show'] == 1) {
  if (
is_uploaded_file($_FILES['imagefile']['tmp_name'])) {
  
header("Content-type: image/jpeg");
  
readfile($_FILES['imagefile']['tmp_name']);
  exit ();
}}
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Show Uploaded Image</title>
</head>
<body>
<h2>Please select a jpeg file to upload</h2>
<form action="" enctype="multipart/form-data" method="post">
<input type="hidden" name="show" value="1">
<input type="file" name="imagefile"><br />
<button type="submit">Upload</button>
</form>
</body>
</html>

To save the image to a database you need to use fopen to open the file and addslashes like this:
Code:
$fp = fopen($_FILES['imagefile']['tmp_name'],"rb");
$image_bytes = addslashes(fread($fp,filesize($_FILES['imagefile']['tmp_name'])));

If you can't find the uploaded file, try inserting phpinfo(INFO_VARIABLES); in the code to show what has been uploaded.
Report to moderator   Logged

Pages: [1] Go Up Stumble Upon! Digg It! del.icio.us! Add to Technorati! ReddIt!  Send this topic Print 
+ Webmaster Key Forums
|-+ Webmaster Corner
| |-+ Site Design and Web Authoring
| | |-+ Coding Talk
| | | |-+ php image upload

Jump to:  
« previous next »


Our Partners
RelmaxTOP Ranking System Web Hosting RelmaxTOP Ranking System
Staff Sites
12Noon[12Noon Gallery] Andy[Urgentclick]
Tamuril[Tamuril's Digital Art Exhibit] Sensovision
Powered by MySQL Powered by PHP We are hosted by Relmax Inc. |Our Privacy Policy | Sitemap
Powered by SMF 1.1.9 | SMF © 2006-2009, Simple Machines LLC
Forum design by Tamuril © 2005.
Valid XHTML 1.0! Valid CSS!