Server IP : 192.124.249.33 / Your IP : 66.248.200.33 Web Server : Apache System : Linux 141.134.66.148.host.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els6.x86_64 #1 SMP Fri Sep 13 13:42:20 UTC 2024 x86_64 User : tarangglobal ( 1001) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/tarangglobal/public_html/cyber/ |
Upload File : |
<?php require_once('pdoconfig.php'); $catid=$_REQUEST['catid']; $act=$_REQUEST['act']; $name=$_REQUEST['name']; $remarks=$_REQUEST['remarks']; $link=$_REQUEST['link']; $uploadresume=$_FILES["file"]["name"]; //echo $fileToUpload ; //die(); //if($active=='on'){ $aa1=1;}else{ $aa1=0;} /*if($category=='' || strlen($category)>50) { die("Something went wrong! <br> <a href='category_master.php'>Continue</a>"); }*/ if($act == "add") { $sql="insert into aa_project_master set project_name=?, remarks=?"; $arr=array($name,$remark); $res=$action->insertp($sql,$arr); $prod_id=$res; if($res>0) { /***************Image1************************************/ if($uploadresume!='') { $file_tmp =$_FILES['file']['tmp_name']; $pos=strpos($uploadresume,"."); if($uploadresume=="") { $new_file_name=""; } else { $new_file_name="Resource".'-'.$prod_id.substr($uploadresume, $pos,strlen($uploadresume)-$pos); } move_uploaded_file($file_tmp,"https://www.tarangglobal.com/cyber/admin/upload/".$new_file_name); //echo $new_file_name; $qry="update aa_project_master set audio_link=? where res_id=?"; $arr=array($new_file_name,$prod_id); $action->updatep($qry,$arr); } ?> <script> alert("Data Save successfully"); window.location.href="#"; </script> <?php } } ?>Private