| Server IP : 104.21.80.248 / Your IP : 172.71.28.155 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Inetpub/www/news/ |
Upload File : |
<meta http-equiv="Content-Type" content="text/php; charset=utf-8" />
<?php
include('db.php');
$id = $mysqli->escape_string($_GET['id']);
$type= $mysqli->escape_string($_POST['type']);
//echo $id ;
//print_r($_POST);
//print_r($_FILES);
$file_tmp=$_FILES["petition"]["tmp_name"];
$file_name=$_FILES["petition"]["name"];
$array_last = explode(".",$file_name);
$c=count($array_last) - 1;
$lastname=strtolower($array_last[$c]);
$filenew =date("Ydm-His"). "_$type_$id." .$lastname;
if ($lastname=="xls" or $lastname=="xlsx" or $lastname=="doc" or $lastname=="docx" or $lastname=="pdf") {
if(move_uploaded_file($file_tmp,"uploads/petition/".$filenew))
{
$sql = "INSERT INTO building (s_id, d_file, d_update,type) VALUES ('$id', '".$filenew."', NOW(),'$type' )" ;
// echo $sql ;
$mysqli->query($sql) or die ($mysqli->error );
}
}
echo "<meta http-equiv=refresh content=0;URL=building.php?id=$id>";
?>