MMCT TEAM
Server IP : 103.53.40.154  /  Your IP : 3.128.171.192
Web Server : Apache
System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
User : ppcad7no ( 715)
PHP Version : 8.2.25
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home2/ppcad7no/vivahmilankendra.com/admin/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home2/ppcad7no/vivahmilankendra.com/admin/addedit-religion-community.php
<?php require_once("header.php");?>
<?php require_once("left-nav.php");?>
<?php
$c_id=trim($_REQUEST['id']);
$c_id = trim($c_id);


if(is_post_back()){
//*************** UPDATE EXISTING CATEGORY START ************************//

if($_REQUEST['id']!='0') {

////////////****************** IMAGE RESIZING END HERE *****************************//
$check_title=db_scalar("select COUNT(*) from tbl_community where c_title='$c_title'");
if($check_title==0){
$sql = "update tbl_community set        
				c_title='$c_title',
				c_desc = '$c_desc', 	
				c_add_date='$curr_date',
				c_status='$c_status',
				c_parent_id='0'
				where c_id = '$c_id' ";

db_query($sql);


$_SESSION["msg"]="Religion/Community Updated Successfully !";
$_SESSION["msg_type"]="success";
header("Location:addedit-religion-community.php?id=$_REQUEST[id]");
exit;
}else{
  $_SESSION["msg"]="Please enter a different title !"; 
  $_SESSION["msg_type"]="error";  
}
//*************** UPDATE EXISTING CATEGORY END ************************//
}else{

$check_title=db_scalar("select COUNT(*) from tbl_community where c_title='$c_title'");

if($check_title==0){

$sql = "insert into tbl_community set 
				c_title='$c_title',
				c_desc = '$c_desc', 	
				c_add_date='$curr_date',
				c_status='$c_status',
				c_parent_id='0'";
				
db_query($sql);
$_SESSION["msg"]="Religion/Community added successfully !";
$_SESSION["msg_type"]="success";
header("Location:addedit-religion-community.php?id=$_REQUEST[id]");
exit;
//*************** INSERT NEW CATEGORY END ************************//
}else{
  $_SESSION["msg"]="Please enter a different title !"; 
  $_SESSION["msg_type"]="error";
}    
    
}
}

if($c_id!='') {
	$result = db_query("select * from tbl_community where c_id = '$c_id'");
	if ($line_raw = mysqli_fetch_array($result)) {
	 @extract($line_raw);
	}
}
?>



         <!-- Content Wrapper. Contains page content -->
         <div class="content-wrapper">
            <!-- Content Header (Page header) -->
            <section class="content-header">
               <div class="header-icon">
                  <i class="fa fa-pencil-square-o" aria-hidden="true"></i>

               </div>
               <div class="header-title">
                  <h1>Add/Edit Religion</h1>
                  <small>Add/Edit Religion</small>
                  
                  
<a href="religion_list.php"><button id="btn-go-back" type="button" class="btn btn-labeled btn-inverse m-b-5 pull-right">
<span class="btn-label" ><i class="fa fa-chevron-circle-left"></i></span>Go Back
</button></a>

                  
</div>


</section>
<!-- Main content -->
<!--<script src="../ckeditor/ckeditor.js"></script>-->            
    <section class="content">
    
        <?php if($_SESSION["msg"]!="" && $_SESSION["msg_type"]=="error"){?>     
        
        <div class="alert alert-danger alert-dismissable fade in text-center" style="background-color:rgba(187,33,36,1);border:none; color:#FFF;margin:10px 0 10px 0">
        <a href="#" class="close" data-dismiss="alert" aria-label="close">&times;</a>
        <strong>Error!&nbsp;&nbsp;&nbsp;</strong> <?=$_SESSION["msg"]?>.
        </div>
<?php 
}else if($_SESSION["msg"]!="" && $_SESSION["msg_type"]=="success"){?>
    
        <div class="alert alert-success alert-dismissable fade in text-center" style="background-color:rgba(34,187,51,.8);border:none; color:#FFF;margin:10px 0 10px 0">
        <a href="#" class="close" data-dismiss="alert" aria-label="close">&times;</a>
        <strong>Success!&nbsp;&nbsp;&nbsp;</strong> <?=$_SESSION["msg"]?>.
        </div>

<?php }
unset($_SESSION["msg"]);
unset($_SESSION["msg_type"]);
?>     

               <div class="row">
                  <!-- Form controls -->
                  <div class="col-sm-12">
                     <div class="panel panel-bd lobidrag" data-edit-title='false' data-close='false' data-reload='false'>
                        <div class="panel-heading">
                           <div class="btn-group" id="buttonexport">
                              
                                 <h4 class="font-black">General Information</h4>
                              
                           </div>
                        </div>
                        <div class="panel-body">
<form name="form1" method="post" onsubmit="return formValidation()" enctype="multipart/form-data" class="col-sm-12" >
                              


                            


<div class="form-group col-lg-12">
                                 <label>Title</label>
<input type="text" class="form-control" placeholder="Enter Name" name="c_title" id="c_title"  value="<?=$c_title?>">
                              </div>
                                         
                                         
                                         

                             
                             <div class="form-group col-lg-12">
                                 <label>Description</label>
 <textarea class="form-control" name="c_desc" rows="3" id="editor1"><?=$c_desc?></textarea>
                              </div>
                             
<script>

// Replace the <textarea id="editor"> with an CKEditor
// instance, using default configurations.
CKEDITOR.replace( 'editor1');

</script>
                           
                           
<div class="form-group col-lg-3">
 <label>Status</label>
 
<select name="c_status" class="form-control" >
                      <option value="Active" <?php if($c_status=='Active'){ ?> selected="selected" <? } ?>>Active</option>
                      <option value="Inactive" <?php if($c_status=='Inactive'){ ?> selected="selected" <? } ?>>Inactive</option>
                    </select>


</div>                             
       


<?php /*?><div class="col-lg-12" style="padding:0;background-color:#e8f1f3;margin:20px 0 50px 0">
                           <div class="btn-group" id="buttonexport">
                              <a href="#" >
                                 <h4 style="color:#000;font-weight:600;padding:5px">SEO Related Information</h4>
                              </a>
                           </div>
                        </div>                             
                             
                             
                              <div class="form-group col-lg-12">
                                 <label>Category Meta Title</label>
<textarea class="form-control" rows="3" name="category_meta_title" id="category_meta_title" placeholder="Enter category meta title here" ><?=$category_meta_title?></textarea>
                              </div>
                              <div class="form-group col-lg-12">
                                 <label>Category Meta Description</label>
<textarea class="form-control" rows="3" placeholder="Enter category meta description here" name="category_meta_description" id="category_meta_description"><?=$category_meta_description?></textarea>
                              </div>
                              <div class="form-group col-lg-12">
                                 <label>Category Meta Keyword</label>
<textarea class="form-control" rows="3" name="category_meta_keywords" placeholder="Enter category meta keywords here" id="category_meta_keywords"><?=$category_meta_keywords?></textarea>
                              </div><?php */?>
                              
                              
                             
                              <div class="col-lg-12 reset-button">
                                                                 
                                 <button type="submit" class="btn btn-add">Submit</button>
                                
                              </div>
                           </form>
                        </div>
                     </div>
                  </div>
               </div>
            </section>
            <!-- /.content -->
         </div>
<?php require_once("footer.php"); ?>
 

MMCT - 2023