brodwilkinson Posted May 9, 2009 Share Posted May 9, 2009 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 More sharing options...
brodwilkinson Posted May 9, 2009 Author Share Posted May 9, 2009 anybody? Link to comment https://forums.phpfreaks.com/topic/157474-upload-problems/#findComment-830230 Share on other sites More sharing options...
brodwilkinson Posted May 9, 2009 Author Share Posted May 9, 2009 also is having a website with many different php scripts on what file a bad idea? i dont have my files like: upload.php --> process.php mines more like index.php --> index.php#process like its all on the one page, is it a bad idea? Link to comment https://forums.phpfreaks.com/topic/157474-upload-problems/#findComment-830244 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.