Forum FAQForum FAQSearchSearch MemberlistMemberlist Forum ignore listForum ignore list RegisterRegister ProfileProfile Log in to check your private messagesLog in to check your private messages Log inLog in
Uploadanje dokumenata PHP-om - pitanje

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Server-side
View previous topic :: View next topic  
Author Message
niksy



Joined: 29 Sep 2003
Posts: 727

PostPosted: 15.09.2007 15:09    Post subject: Uploadanje dokumenata PHP-om - pitanje Add user to your forum ignore list Reply with quote

Proucio sam tutorial na DevArticles o stvaranju skripte za upload vise dokumenata na server. Skripta radi kako treba, no mene zanima kako bi mogao toj skirpti dati naredbu da dokumente salje u odredjeni folder na serveru (posto nemam bas veliko znanje za takve stvari Embarassed ).

Code:
<?
$uploadNeed = $_POST['uploadNeed'];
// start for loop
for($x=0;$x<$uploadNeed;$x++){
$file_name = $_FILES['uploadFile'. $x]['name'];
// strip file_name of slashes
$file_name = stripslashes($file_name);
$file_name = str_replace("'","",$file_name);
$copy = copy($_FILES['uploadFile'. $x]['tmp_name'],$file_name);
 // check if successfully copied
 if($copy){
 echo "$file_name | uploaded sucessfully!<br>";
 }else{
 echo "$file_name | could not be uploaded!<br>";
 }
} // end of loop
?>


Hvala unaprijed Very Happy
Back to top
View user's profile Send private message Visit poster's website Twitter profile
zytzagoo
mi3.crew


Joined: 25 Aug 2003
Posts: 1842
Location: Zagreb, Hrvatska

PostPosted: 15.09.2007 16:34    Post subject: Add user to your forum ignore list Reply with quote

http://php.net/move_uploaded_file

_________________
[+]I[+]am[+]my[+]own[+]religion[+]
Back to top
View user's profile Send private message Visit poster's website Twitter profile
niksy



Joined: 29 Sep 2003
Posts: 727

PostPosted: 15.09.2007 17:47    Post subject: Add user to your forum ignore list Reply with quote

Hvala, uspio sam Very Happy .
Back to top
View user's profile Send private message Visit poster's website Twitter profile
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Server-side All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group