Jump to content

upload problems


Recommended Posts

everything is working but i want some things changed..

i want to only accept .ipa and if possible how can i make it so the

 

"Download Link, http://teambrod.110mb.com/upload/"

 

doesnt show up before you upload something

 

Script

    <?php

$path1= "upload/".$HTTP_POST_FILES['ufile']['name'][0];

copy($HTTP_POST_FILES['ufile']['tmp_name'][0], $path1);

 

echo " Download Link, http://teambrod.110mb.com/upload/".$HTTP_POST_FILES['ufile']['name'][0]."<BR/>";

 

$filesize1=$HTTP_POST_FILES['ufile']['size'][0];

if($filesize1 != 0)

{

echo "Upload Complete";

}

?>

 

also when you upload something it will save here:

 

"upload/filename.extension"

 

but i want it so there is a submit field (i think) that will allow you to type in a name for it, eg.

 

the file is called "blah" but you type in the form "game" then it changes it to:

 

"upload/game.ipa"

 

thanks a bunch.

 

 

the site, http://teambrod.110mb.com

Link to comment
https://forums.phpfreaks.com/topic/157474-upload-problems/
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.