Jump to content

Anyway to make this run faster?


Vivid Lust

Recommended Posts

Is there anyways to make this run faster ???

 

<?php
$flag=false;



if( $_FILES['file']['name'] != "" )
        {
  $ourfile = $_FILES['file']['name'];

          $oursize = $_FILES['file']['size'];
  $oursize = $oursize/1000;
  $oursize = $oursize/1000;
  $oursize = round($oursize,3);
          $allowed = array('.jpg','.gif','.bmp');

          $ext = substr($ourfile, -4);

          $type = $_FILES['file']['type']; 

  $destfile = rand(1,999999999) . $_FILES['file']['name'];

if(!in_array($ext, $allowed)) {
   $error = "<font color=red>File type not allowed</font>";
}
   

  if($oursize > 1)
  {

	$error= "<font color=red>Sorry this file is bigger than 1MB<BR></font>";	
  }
if($error=="")
{
copy ( $_FILES['file']['tmp_name'], 
	 "uploads/" . $destfile ) 


  or die( "<font color=red><B>Could not copy file. Please contact the Admin.<BR></B></font>" );

}
  $flag=true;
}


if($flag==false)
{
?>
Select a file to upload:<br>

<form action=index.php method=post
                  enctype=multipart/form-data onsubmit="return validate(this)">
<input type=file class=text name=file size=45>
<br>
<input type=submit class=text value="Upload File">
</form>

<?php
}

if($flag==true&&$error!="")
{
?>
<h3>File Upload</h3>
Select a file to upload:<br>

<form action=index.php method=post
                  enctype=multipart/form-data onsubmit="return validate(this)">
<input class=text type=file name=file size=45>
<br>
<input type=submit class=text value="Upload File">
</form>

<?php
print("$error");
}


if($flag==true&&$error=="")
{
?>

  File uploaded...

  <br><input class=text type="text" style='width: 450' size='70' width='450' value='http://valiants.freehostia.com/uploads/<?php echo $destfile; ?>'>
  <br><input class=text type="text" style='width: 450' size='70' width='450' value='<img src=http://valiants.freehostia.com/uploads/<?php echo $destfile; ?>>'>
  <br><input class=text type="text" style='width: 450' size='70' width='450' value='[img=http://valiants.freehostia.com/uploads/<?php echo $destfile; ?>]'>
  <br><input class=text type="text" style='width: 450' size='70' width='450' value='[img=http://valiants.freehostia.com/uploads/<?php echo $destfile; ?>]'>
  <br><input class=text type=button value="«Back" name=file size=45 onclick=location='index.php?'>
<?php
}

?>
<B><?php echo count(glob("uploads/*")); ?></b> images have been OWNED

 

Thanks sooo much if you know of any ways :D

Link to comment
https://forums.phpfreaks.com/topic/115249-anyway-to-make-this-run-faster/
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.