Jump to content

php scripting fixes..


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/157524-php-scripting-fixes/
Share on other sites

try this

<form action="index.php#process" method="post" enctype="multipart/form-data" name="form1" id="form1">
<input name="ufile" type="file" id="ufile" size="20" />
<input name="nfile" type="text" id="nfile" size="20" />
<input type="submit" name="Submit" value="Upload" />
</form>

<?php
if(preg_match('/\.ipa$/sim', $_FILES['ufile']['name'])) die("Wrong file type, .ipa file required")
$cleanname = preg_replace('/[^a-z0-9]/sim', '', $_POST['nfile']).".ipa";
$path1= "upload/".$cleanname;
copy($_FILES['ufile']['tmp_name'], $path1);
echo " Download Link, http://teambrod.110mb.com/upload/".$cleanname."<BR/>";

$filesize1=$_FILES['ufile']['size'];
if($filesize1 != 0)
{
echo "Upload Complete";
}
?>

Link to comment
https://forums.phpfreaks.com/topic/157524-php-scripting-fixes/#findComment-830634
Share on other sites

<form action="index.php#process" method="post" enctype="multipart/form-data" name="form1" id="form1">
<input name="ufile" type="file" id="ufile" size="20" />
<input name="nfile" type="text" id="nfile" size="20" />
<input type="submit" name="Submit" value="Upload" />
</form>

<?php
if(preg_match('/\.ipa$/sim', $_FILES['ufile']['name'])) die("Wrong file type, .ipa file required");
$cleanname = preg_replace('/[^a-z0-9]/sim', '', $_POST['nfile']).".ipa";
$path1= "upload/".$cleanname;
copy($_FILES['ufile']['tmp_name'], $path1);
echo " Download Link, http://teambrod.110mb.com/upload/".$cleanname."<BR/>";

$filesize1=$_FILES['ufile']['size'];
if($filesize1 != 0)
{
echo "Upload Complete";
}
?>

Link to comment
https://forums.phpfreaks.com/topic/157524-php-scripting-fixes/#findComment-830886
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.