Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 05-20-2009, 09:12 PM   #1
Pics Traffic
Confirmed User
 
Pics Traffic's Avatar
 
Industry Role:
Join Date: Jun 2004
Location: Europe
Posts: 3,055
Any PHP gurus in the house? Can you help with simple task?

I have this script that uploads image and does insert entries in db. The upload field is for graphics only. Im trying to restict it to these types only:

$fileType=='image/jpg' ||
$fileType=='image/png' ||
$fileType=='image/gif'

How can I put in my script? Here's the little scripty I wrote.. I just need to add restrictions on upload types.

PHP Code:
<?php 

$target 
"images/"
$target $target basename$_FILES['photo']['name']); 

$VIDEOID=strip_tags($_POST['name']); 
$BANNER_URL=strip_tags($_POST['email']); 
$BANNER_NAME=strip_tags(($_FILES['photo']['name']));

mysql_connect("localhost""xxx""xxx") or die(mysql_error()) ; 
mysql_select_db("xxxx") or die(mysql_error()) ; 

mysql_query("INSERT INTO `banners` VALUES ('$VIDEOID', '$BANNER_URL', '$BANNER_NAME')") ; 

if(
move_uploaded_file($_FILES['photo']['tmp_name'], $target)) 


echo 
"The file "basename$_FILES['uploadedfile']['name']). " has been uploaded, and your information has been added to the directory"

else { 

echo 
"Sorry, there was a problem uploading your file."

?>
Pics Traffic is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-20-2009, 09:41 PM   #2
Pics Traffic
Confirmed User
 
Pics Traffic's Avatar
 
Industry Role:
Join Date: Jun 2004
Location: Europe
Posts: 3,055
figured it out. had a stupid typo.
Pics Traffic is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-21-2009, 04:42 AM   #3
nation-x
Confirmed User
 
nation-x's Avatar
 
Industry Role:
Join Date: Mar 2004
Location: Rock Hill, SC
Posts: 5,370
just a suggestion... if this upload is public you should do more than strip_tags to make it secure and it's always a good idea to escape text before you insert it.

check http://us3.php.net/mysql_real_escape_string
nation-x is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.