ok

Mini Shell

Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/public_html/saew.in/admin/
Upload File :
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/public_html/saew.in/admin/name-add.php

<?php  include "header.php";
$date = date('Y-m-d'); 
if(isset($_POST['add_client_name'])){
        try{
            $date = date('Y-m-d h:i:s', time());
            
            $client_name = $_POST['categoryname'];
            $category_id = $_POST['category_id'];
         $statement = $pdo->prepare("INSERT INTO `tbl_clientname`(`client_name`,`category_id`) VALUES (?,?)");
            $result=$statement->execute(array($client_name,$category_id));
                 error_log($result);   
                    if($result){
                        $message = 'Client category name added successfully!';
                        unset($_POST);  
                        
                    }else{
                        $warning="Something went wrong try again...";
                    }  
                }catch(Exception $e){
                    $error=$e;
                }   
    }
    
?>



?>
<div class="content-wrapper" style="background:white;">
        <div class="col-lg-12 alerts">
            <div id="custom-alerts" style="display:none;">
                <div class="alert alert-dismissable">
                    <div class="custom-msg"></div>
                </div>
            </div>
            <?php if ($error)  { ?>
            <div class="alert alert-danger alert-dismissable">
                <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
                <h4><i class="icon fa fa-ban"></i> Error</h4>
                <?= $error; ?>
            </div>
            <?php $error=0;} if ($warning) { ?>
            <div class="alert alert-warning alert-dismissable">
                <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
                <h4><i class="icon fa fa-warning"></i> warning</h4>
                <?= $warning; ?>
            </div>
            <?php  $warning=0;} if ($message) { ?>
            <div class="alert alert-success alert-dismissable">
                <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
                <h4>    <i class="icon fa fa-check"></i> Success</h4>
                <?= $message; ?>
            </div>
            <?php $message=0; } ?>
        </div>
        <div class="clearfix"></div>







<section class="content">
    <div class="row">
        <div class="col-xs-12">
            <div>
                <div class="box-header">
                    <h3 class="box-title"><b>Create Client Category: </b></h3>
                </div>
                <div class="box-body">
                    <div class="col-lg-12">

                        <form action="" class="validation" enctype="multipart/form-data" method="post" accept-charset="utf-8">
                                                                 
                        <div class="row">

                            <div class="col-md-4">
                                <div class="form-group">
                                    <label for="file" class="required">Client Name  </label>                                    
                                    <input type="text" name="categoryname" value="" id="categoryname" placeholder="Enter category name" class="form-control tip" required/>
                                </div>
                                <span style="color: red;" id="photospan"></span>
                            </div>
                          <div class="col-md-4">
                                <div class="form-group">
                                    <label for="file" class="required">Category Name  </label> 
                                    <select id="category_id" name="category_id" placeholder="Enter category name" class="form-control " required  > 
                                        <option> Select </option>
                                        <?php 
                                        
                                            $client_query = $pdo->prepare("SELECT * FROM tbl_client_category WHERE status=1");
                                            $client_query->execute();
                                            $client_data = $client_query->fetchAll(PDO::FETCH_ASSOC);
                                            $total_client = $client_query->rowCount();
                                            if($total_client>0){ 
                                               foreach($client_data as $client_datas) {
                                                   
                                                   ?>
                                                   <option value="<?= $client_datas['id'] ?>" > <?= $client_datas['category_name'] ?> </option>
                                                   <?php
                                               }
                                                
                                            }
                                        ?>
                                        
                                    </select>
                                </div>
                                <span style="color: red;" id="photospan"></span>
                            </div>
                        </div>
                        

                        <div class="form-group" style="text-align:center;">
                            <input type="submit" name="add_client_name" value="Add Client Name"  class="btn btn-success" />
                        </form>
                        </div>

                    </div>
                        <div class="form-group" style="text-align:center;">
                            <a href="name-add.php"><button class="btn btn-primary" ><i class="fa fa-refresh"></i> Reset Form</button></a>
                            <a href="name-category.php"><button class="btn btn-warning" ><i class="fa fa-chevron-left"></i> Back to List</button></a>
                         </div>
                    <div class="clearfix"></div>
                </div>
            </div>
        </div>
    </div>
</section>

<script>
var photo = document.getElementById("photo");
photo.onchange = function() {
    console.log(photo);
    $('#photospan').text('');
    if(this.files[0].size > 1048576){
        $('#photospan').text('Photo Image Maximum 1 mb Allowed');
       alert("File is too big!");
       this.value = "";
    };
};

</script>

<?php 

 define ("MAX_SIZE","400");

 $errors=0;
 
 if($_SERVER["REQUEST_METHOD"] == "POST")
 {
        $image =$_FILES["file"]["image_name"];
 $uploadedfile = $_FILES['file']['photo'];

  if ($image) 
  {
  $filename = stripslashes($_FILES['file']['image_name']);
        $extension = getExtension($filename);
  $extension = strtolower($extension);
 if (($extension != "jpg")&& ($extension != "png")) 
  {
echo ' Unknown Image extension ';
$errors=1;
  }
 else
{
   $size=filesize($_FILES['file']['photo']);
 
if($extension=="jpg" || $extension=="jpeg" )
{
$uploadedfile = $_FILES['file']['photo'];
$src = imagecreatefromjpeg($uploadedfile);
}
else if($extension=="png")
{
$uploadedfile = $_FILES['file']['photo'];
$src = imagecreatefrompng($uploadedfile);
}
else 
{
$src = imagecreatefromgif($uploadedfile);
}
 
list($width,$height)=getimagesize($uploadedfile);

$newwidth=50;
$newheight=($height/$width)*$newwidth;
$tmp=imagecreatetruecolor($newwidth,$newheight);

$newwidth1=50;
$newheight1=($height/$width)*$newwidth1;
$tmp1=imagecreatetruecolor($newwidth1,$newheight1);

imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,
 $width,$height);

imagecopyresampled($tmp1,$src,0,0,0,0,$newwidth1,$newheight1, 
$width,$height);

$filename = "images/". $_FILES['file']['image_name'];
$filename1 = "images/small". $_FILES['file']['image_name'];

imagejpeg($tmp,$filename,100);
imagejpeg($tmp1,$filename1,100);

imagedestroy($src);
imagedestroy($tmp);
imagedestroy($tmp1);
}
}
}
//If no errors registred, print the success message

 if(isset($_POST['Submit']) && !$errors) 
 {
   // mysql_query("update SQL statement ");
  echo "Image Uploaded Successfully!";

 }
 ?>


<?php include "footer.php";?>

Zerion Mini Shell 1.0