[advanced search]
 

Go Back   NamePros.com > Discussion > Web Design & Development > Programming

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.


Closed Thread
 
LinkBack Thread Tools
Old 03-29-2006, 07:23 AM   #1 (permalink)
NamePros Regular
 
food_consult's Avatar
 
Join Date: Feb 2003
Posts: 949
224.00 NP$ (Donate)

food_consult is on a distinguished road


Question I need an easy upload script

I need an easy upload script so that people can upload pdfs and doc files to our server via the wbesite...

food_consult is offline  
Old 03-29-2006, 07:32 AM   #2 (permalink)
New Member
 
Join Date: Mar 2006
Location: United Kingdom
Posts: 2
0.00 NP$ (Donate)

iDotCom is an unknown quantity at this point


Hi food_consult

Please see this link:

Link

I think this is what your after.

Thanks

Mark
iDotCom is offline  
Old 03-30-2006, 11:45 AM   #3 (permalink)
NamePros Regular
 
Join Date: Mar 2006
Posts: 215
54.90 NP$ (Donate)

JayZ is an unknown quantity at this point


if you want an easy one try http://www.inetscripts.net
JayZ is offline  
Old 04-02-2006, 06:40 AM   #4 (permalink)
NamePros Member
 
TotalDesain's Avatar
 
Join Date: Jul 2004
Location: just go to left side from my right neighbour...
Posts: 31
36.00 NP$ (Donate)

TotalDesain is an unknown quantity at this point


Here you are:

//upload file at http://ads.rantaipulsa.com
if ($HTTP_POST_FILES['photo']['name'] != '') {
$gambar = $HTTP_POST_VARS['klien'].$HTTP_POST_FILES['photo']['name'];
$tempgambar = $HTTP_POST_FILES['photo']['tmp_name'];
copy($tempgambar, "banner/".$gambar);
}
TotalDesain is offline  
Old 04-02-2006, 04:33 PM   #5 (permalink)
Account Suspended
 
Join Date: Apr 2006
Posts: 5
9.00 NP$ (Donate)

Gimeimages is an unknown quantity at this point


<?php echo"Upload"; ?> <--- thats a nice one lol, im just kidding, use hotscripts to find one it takes a few seconds, if that doesnt help Google is your friend.
Gimeimages is offline  
Old 04-07-2006, 09:35 AM   #6 (permalink)
NamePros Regular
 
food_consult's Avatar
 
Join Date: Feb 2003
Posts: 949
224.00 NP$ (Donate)

food_consult is on a distinguished road


thanks Gimeimages
food_consult is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Site Sponsors
Advertise your business at NamePros

All times are GMT -7. The time now is 01:56 AM.


Powered by: vBulletin® Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Template-Modifications by TMS
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85