ok

Mini Shell

Direktori : /home2/selectio/public_html/tnpsctestbatch.com/admin/apis/
Upload File :
Current File : /home2/selectio/public_html/tnpsctestbatch.com/admin/apis/tab-sub-headings.php

<?php
session_start();
include"../config/config.php";
$date = date('Y-m-d h:i:s', time());


if(isset($_POST['type']) && $_POST['type']=='sub_headings_add'){
        try{
            
            
               
            $statement = $pdo->prepare("INSERT INTO `tbl_tab_sub_headings` (`name`,`headings`,`status`) VALUES (?,?,?)");
            $result  =$statement->execute(array($_POST['name'],$_POST['headings'],$_POST['status']));
               
                    if($result){
                     
                        $return_arr['message'] = 'Tab - Sub Heading Added Successfully!';
                        $return_arr['status']=200;
                          
                    }else{
                        $return_arr['message']="Something went wrong try again...";
                        $return_arr['status']=400;
                    }  
                }catch(Exception $e){
                    $return_arr['message']='0987'.$e;
                    $return_arr['status']=500;
                }   
                echo json_encode($return_arr);
    }
    
    
if(isset($_POST['type']) && $_POST['type']=='headings_edit'){
        try{
            
            
               
            $statement = $pdo->prepare("UPDATE `tbl_tab_headings` SET `name`=?, `category`=?, `status`=? WHERE id=?");
            $result  =$statement->execute(array($_POST['name'],$_POST['category'],$_POST['status'],$_POST['ids']));
               
                    if($result){
                     
                        $return_arr['message'] = 'Tab - Heading Updated Successfully!';
                        $return_arr['status']=200;
                          
                    }else{
                        $return_arr['message']="Something went wrong try again...";
                        $return_arr['status']=400;
                    }  
                }catch(Exception $e){
                    $return_arr['message']='0987'.$e;
                    $return_arr['status']=500;
                }   
                echo json_encode($return_arr);
    }

?>

Zerion Mini Shell 1.0