PHP 8.1.33
Preview: question_edit_backp-18.php Size: 31.28 KB
/home/jambtst2015/public_html/giraffeng.com/admin/question_edit_backp-18.php

<?php include("includes/head.php"); ?>

<?php include("includes/header.php"); ?>


<?php

/*---For Add---*/

$question_id = $_REQUEST['id'];

if(empty($_POST['submit'])){ $_POST['submit']=''; }



if($_POST['submit'] == 'Save'){

	/*include("image_file.php");
	
	if($_FILES['filename']['name']!='')
  {
	$src_subscription_form=$_FILES['filename']['tmp_name'];
	$dest_subscription_form=time().$_FILES['filename']['name'];
	$dest_subscription_form1="upload_file/".$dest_subscription_form;
	//exit;
	 copy($src_subscription_form,$dest_subscription_form1);
  }
  */
	/*----check username----*/

	$chksql = "select `id` from `exam_question_answers_reasons` where `question`='".$_POST['bodyar11']."'";

	$chkqry = mysql_query($chksql);

	$getRow = mysql_num_rows($chkqry);

	/*----end username check-*/

		if($_POST['bodyar11'] == ''){

			$error = 'Please enter question.';

		}
		
		else
		{
			$insSql = "update `exam_question_answers_reasons` set ";
			$insSql .= "exam_board_id='".mysql_real_escape_string($_POST['exam_board_id'])."', ";
			$insSql .= "subject_id='".mysql_real_escape_string($_POST['subject_id'])."', ";
			 $insSql .= "question='".mysql_real_escape_string($_POST['bodyar11'])."', ";
			 $insSql .= "ans1='".mysql_real_escape_string($_POST['bodyar12'])."', ";
			 $insSql .= "ans2='".mysql_real_escape_string($_POST['bodyar13'])."', ";
			 $insSql .= "ans3='".mysql_real_escape_string($_POST['bodyar14'])."', ";
			 $insSql .= "ans4='".mysql_real_escape_string($_POST['bodyar15'])."', ";
			 $insSql .= "ans5='".mysql_real_escape_string($_POST['bodyar16'])."', ";
			 $insSql .= "reasons1='".mysql_real_escape_string($_POST['reason1'])."', ";
			  $insSql .= "reasons2='".mysql_real_escape_string($_POST['reason2'])."', ";
			   $insSql .= "reasons3='".mysql_real_escape_string($_POST['reason3'])."', ";
			    $insSql .= "reasons4='".mysql_real_escape_string($_POST['reason4'])."', ";
				 $insSql .= "reasons5='".mysql_real_escape_string($_POST['reason5'])."', ";
			 $insSql .= "correct_ans='".mysql_real_escape_string($_POST['ans'])."', ";
			 $insSql .= "status='".$_POST['status']."', ";
			 $insSql .= "modify_date=now() where id = '".$question_id."' ";
			 
		   //echo $insSql;exit;

			mysql_query($insSql);

			//include("mailuser.php");

			header('location:question.php?success=3&page='.$_REQUEST['page'].'');

			exit();
		}


}

else{

	$_POST['name']='';

}
/*---End Add---*/

?>
<script>

function formSub(){

	//alert(11111111);

	document.formID.submit();

	return true;
}
jQuery.noConflict();

(function($) {jQuery(document).ready(function(){

	// binds form submission and fields to the validation engine

	jQuery("#formID").validationEngine('attach', {

			onValidationComplete: function(form, status){

			//alert("The form status is: " +status+", it will never submit");

			if(status == true){

				//$('input[type="submit"]').attr('disabled','disabled');

				return formSub();

			}

		}  

	});

});})(jQuery);



</script>

<div class="container_bottom_section tbl_cls_new">

<form name="formID" action="" method="post" id="formID" enctype="multipart/form-data">

<?php 

	$sql_data = mysql_fetch_array(mysql_query("SELECT * FROM exam_question_answers_reasons WHERE id = '".$question_id."'"));

?>

<table width="100%" border="0" cellspacing="0" cellpadding="0">



	<?php if(empty($error)){$error='';}



	if($error!=''){


	?>

    <tr>

    <td colspan="5">

		<div class="error"><?php echo $error; ?></div>

    </td>

    </tr>

    <?php } ?>

  <tr>

    <td valign="top">
		<div class="tbl-out">
			<p class="client_table">
	    		<i class="fa fa-edit"></i>  Edit Question
	    	</p>

    	<table width="100%" border="0" cellspacing="0" cellpadding="0" class="center-tbl  new-tbl">

          <tr>
            <td align="right" valign="top" class="left_head_form">*Board</td>
            <td><select name="exam_board_id" class="validate[required] selectfield require_select">
							<option value="">--Select Board Name --</option>
							<?php $board = mysql_query("select * from exam_board_master");
								//$bords_list = 	mysql_fetch_array($board);
								while($bords_list = 	mysql_fetch_array($board))
								{
									?>				              							 
				              <option value="<?php echo $bords_list['id']?>" <?php if($bords_list['id']==$sql_data['exam_board_id']) { ?>selected="selected"<?php } ?>><?php echo $bords_list['name']?></option>
							  <?php } ?>
				            </select>
							</td>
         </tr>		 
		 <tr>
            <td align="right" valign="top" class="left_head_form">*Subject</td>
           <td><select name="subject_id" class="validate[required] selectfield require_select">
							<option value="">--Select Subject  --</option>
							<?php $board = mysql_query("select * from exam_subject_master");
								//$bords_list = 	mysql_fetch_array($board);
								while($bords_list = 	mysql_fetch_array($board))
								{
									?>				              							 
				              <option value="<?php echo $bords_list['id']?>" <?php if($bords_list['id']==$sql_data['subject_id']) { ?>selected="selected"<?php } ?>><?php echo $bords_list['subject']?></option>
							  <?php } ?>
				            </select>
							</td>
         </tr>		 	 
		<tr>
            <td align="right" valign="top" class="left_head_form">*Question</td>
            <td><textarea name="bodyar11" id="bodyar11" class="validate[required] textarea require_textarea"><?php echo htmlspecialchars_decode(stripslashes($sql_data['question'])); ?></textarea></td>
         </tr> 
		
		 	<tr>
            <td align="right" valign="top" class="left_head_form">*Answer1</td>
            <td><textarea name="bodyar12" id="bodyar12" class="validate[required] textarea require_textarea"><?php echo htmlspecialchars_decode(stripslashes($sql_data['ans1'])); ?></textarea></td>
         </tr> 
		
		<tr>
            <td align="right" valign="top" class="left_head_form">*Reason1</td>
            <td><textarea name="reason1" id="reason1" class="validate[required] textarea require_textarea"><?php echo htmlspecialchars_decode(stripslashes($sql_data['reasons1'])); ?></textarea></td>
         </tr> 
		
		
		
		 	<tr>
            <td align="right" valign="top" class="left_head_form">*Answer2</td>
            <td><textarea name="bodyar13" id="bodyar13" class="validate[required] textarea require_textarea"><?php echo htmlspecialchars_decode(stripslashes($sql_data['ans2'])); ?></textarea></td>
         </tr>
			<tr>
            <td align="right" valign="top" class="left_head_form">*Reason2</td>
            <td><textarea name="reason2" id="reason2" class="validate[required] textarea require_textarea"><?php echo htmlspecialchars_decode(stripslashes($sql_data['reasons2'])); ?></textarea></td>
         </tr>
		 	<tr>
            <td align="right" valign="top" class="left_head_form">*Answer3</td>
            <td><textarea name="bodyar14" id="bodyar14" class="validate[required] textarea require_textarea"><?php echo htmlspecialchars_decode(stripslashes($sql_data['ans3'])); ?></textarea></td>
         </tr> 
		 <tr>
            <td align="right" valign="top" class="left_head_form">*Reason3</td>
            <td><textarea name="reason3" id="reason3" class="validate[required] textarea require_textarea"><?php echo htmlspecialchars_decode(stripslashes($sql_data['reasons3'])); ?></textarea></td>
         </tr>
		 	<tr>
            <td align="right" valign="top" class="left_head_form">*Answer4</td>
            <td><textarea name="bodyar15" id="bodyar15" class="validate[required] textarea require_textarea"><?php echo htmlspecialchars_decode(stripslashes($sql_data['ans4'])); ?></textarea></td>
         </tr>
<tr>
            <td align="right" valign="top" class="left_head_form">*Reason4</td>
            <td><textarea name="reason4" id="reason4" class="validate[required] textarea require_textarea"><?php echo htmlspecialchars_decode(stripslashes($sql_data['reasons4'])); ?></textarea></td>
         </tr>		 
		 <tr>
            <td align="right" valign="top" class="left_head_form">*Answer5</td>
            <td><textarea name="bodyar16" id="bodyar16" class="validate[required] textarea require_textarea"><?php echo htmlspecialchars_decode(stripslashes($sql_data['ans5'])); ?></textarea></td>
         </tr> 
		 <tr>
            <td align="right" valign="top" class="left_head_form">*Reason5</td>
            <td><textarea name="reason5" id="reason5" class="validate[required] textarea require_textarea"><?php echo htmlspecialchars_decode(stripslashes($sql_data['reasons5'])); ?></textarea></td>
         </tr>
		      <tr><td align="right" valign="top" class="left_head_form">*Correct Answer</td>
			 <td><input type="radio" name="ans" id="ans" value="1" <?php if($sql_data['correct_ans']==1){ echo "checked"; ?><?php } ?> > Answer1 <br>
			 <input type="radio" name="ans" id="ans" value="2" <?php if($sql_data['correct_ans']==2){ echo "checked"; ?><?php } ?>> Answer2<br>
			 <input type="radio" name="ans" id="ans" value="3" <?php if($sql_data['correct_ans']==3){ echo "checked"; ?><?php } ?>> Answer3<br>
			 <input type="radio" name="ans" id="ans" value="4" <?php if($sql_data['correct_ans']==4){ echo "checked"; ?><?php } ?>> Answer4<br>
			 <input type="radio" name="ans" id="ans" value="5" <?php if($sql_data['correct_ans']==5){ echo "checked"; ?><?php } ?>> Answer5</td> 
		 </tr>             
           <tr>

            <td align="right" valign="top" class="left_head_form">Status</td>

            <td><select name="status" class="selectfield require_select">

              <option value="Active" <?php if($sql_data['status']=='Active') { ?>selected="selected"<?php } ?>>Active</option>

              <option value="Inactive" <?php if($sql_data['status']=='Inactive') { ?>selected="selected"<?php } ?>>Inactive</option>

              </select></td>           

          </tr>        
        </table>
		</div>
    </td>
          </tr>
        </table>
</td>
    <td width="2%" valign="top">&nbsp;</td>
    <td width="34%" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>           
              <td colspan="5" align="center">           
              <input name="submit" type="submit" value="Save" class="require float-none org" style=" margin-bottom:10px;" onclick="return Checkfiles();" />
             <input type="button" name="back" id="back" class="require float-none" value="Cancel" style=" margin-bottom:10px;" onclick="window.history.back();" />         
              </td>
            </tr>             
        </table>
</td>
  </tr>
</table>
</form>
<div class="clear"></div>
</div>
<script type="text/javascript" src="js/tinymce/tinymce.min.js"></script>
<script type="text/javascript">
tinymce.init({
        selector: "#bodyar11",
		height : 225,
		width : 750,
        plugins: [
                "advlist autolink autosave link image lists charmap print preview hr anchor pagebreak spellchecker",
                "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
                "table contextmenu directionality emoticons template textcolor paste fullpage textcolor"
        ],

        toolbar1: "newdocument fullpage | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | styleselect formatselect fontselect fontsizeselect",
        toolbar2: "cut copy paste | searchreplace | bullist numlist | outdent indent blockquote | undo redo | link unlink anchor image media code | inserttime preview | forecolor backcolor",
        toolbar3: "table | hr removeformat | subscript superscript | charmap emoticons | print fullscreen | ltr rtl | spellchecker | visualchars visualblocks nonbreaking template pagebreak restoredraft",

        menubar: false,
        toolbar_items_size: 'small',
		//relative_urls: false,
		relative_urls : false,
		remove_script_host : false,
		convert_urls : true,
		//document_base_url: 'http://www.insurancemall2.com/india/',
        style_formats: [
                {title: 'Bold text', inline: 'b'},
                {title: 'Red text', inline: 'span', styles: {color: '#ff0000'}},
                {title: 'Red header', block: 'h1', styles: {color: '#ff0000'}},
                {title: 'Example 1', inline: 'span', classes: 'example1'},
                {title: 'Example 2', inline: 'span', classes: 'example2'},
                {title: 'Table styles'},
                {title: 'Table row 1', selector: 'tr', classes: 'tablerow1'}
        ],

        templates: [
                {title: 'Test template 1', content: 'Test 1'},
                {title: 'Test template 2', content: 'Test 2'}
        ]
});
</script>
<script type="text/javascript">
tinymce.init({
        selector: "#bodyar12",
		height : 225,
		width : 750,
        plugins: [
                "advlist autolink autosave link image lists charmap print preview hr anchor pagebreak spellchecker",
                "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
                "table contextmenu directionality emoticons template textcolor paste fullpage textcolor"
        ],

        toolbar1: "newdocument fullpage | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | styleselect formatselect fontselect fontsizeselect",
        toolbar2: "cut copy paste | searchreplace | bullist numlist | outdent indent blockquote | undo redo | link unlink anchor image media code | inserttime preview | forecolor backcolor",
        toolbar3: "table | hr removeformat | subscript superscript | charmap emoticons | print fullscreen | ltr rtl | spellchecker | visualchars visualblocks nonbreaking template pagebreak restoredraft",

        menubar: false,
        toolbar_items_size: 'small',
		//relative_urls: false,
		relative_urls : false,
		remove_script_host : false,
		convert_urls : true,
		//document_base_url: 'http://www.insurancemall2.com/india/',
        style_formats: [
                {title: 'Bold text', inline: 'b'},
                {title: 'Red text', inline: 'span', styles: {color: '#ff0000'}},
                {title: 'Red header', block: 'h1', styles: {color: '#ff0000'}},
                {title: 'Example 1', inline: 'span', classes: 'example1'},
                {title: 'Example 2', inline: 'span', classes: 'example2'},
                {title: 'Table styles'},
                {title: 'Table row 1', selector: 'tr', classes: 'tablerow1'}
        ],

        templates: [
                {title: 'Test template 1', content: 'Test 1'},
                {title: 'Test template 2', content: 'Test 2'}
        ]
});

tinymce.init({
        selector: "#bodyar13",
		height : 225,
		width : 750,
        plugins: [
                "advlist autolink autosave link image lists charmap print preview hr anchor pagebreak spellchecker",
                "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
                "table contextmenu directionality emoticons template textcolor paste fullpage textcolor"
        ],

        toolbar1: "newdocument fullpage | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | styleselect formatselect fontselect fontsizeselect",
        toolbar2: "cut copy paste | searchreplace | bullist numlist | outdent indent blockquote | undo redo | link unlink anchor image media code | inserttime preview | forecolor backcolor",
        toolbar3: "table | hr removeformat | subscript superscript | charmap emoticons | print fullscreen | ltr rtl | spellchecker | visualchars visualblocks nonbreaking template pagebreak restoredraft",

        menubar: false,
        toolbar_items_size: 'small',
		//relative_urls: false,
		relative_urls : false,
		remove_script_host : false,
		convert_urls : true,
		//document_base_url: 'http://www.insurancemall2.com/india/',
        style_formats: [
                {title: 'Bold text', inline: 'b'},
                {title: 'Red text', inline: 'span', styles: {color: '#ff0000'}},
                {title: 'Red header', block: 'h1', styles: {color: '#ff0000'}},
                {title: 'Example 1', inline: 'span', classes: 'example1'},
                {title: 'Example 2', inline: 'span', classes: 'example2'},
                {title: 'Table styles'},
                {title: 'Table row 1', selector: 'tr', classes: 'tablerow1'}
        ],

        templates: [
                {title: 'Test template 1', content: 'Test 1'},
                {title: 'Test template 2', content: 'Test 2'}
        ]
});

tinymce.init({
        selector: "#bodyar14",
		height : 225,
		width : 750,
        plugins: [
                "advlist autolink autosave link image lists charmap print preview hr anchor pagebreak spellchecker",
                "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
                "table contextmenu directionality emoticons template textcolor paste fullpage textcolor"
        ],

        toolbar1: "newdocument fullpage | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | styleselect formatselect fontselect fontsizeselect",
        toolbar2: "cut copy paste | searchreplace | bullist numlist | outdent indent blockquote | undo redo | link unlink anchor image media code | inserttime preview | forecolor backcolor",
        toolbar3: "table | hr removeformat | subscript superscript | charmap emoticons | print fullscreen | ltr rtl | spellchecker | visualchars visualblocks nonbreaking template pagebreak restoredraft",

        menubar: false,
        toolbar_items_size: 'small',
		//relative_urls: false,
		relative_urls : false,
		remove_script_host : false,
		convert_urls : true,
		//document_base_url: 'http://www.insurancemall2.com/india/',
        style_formats: [
                {title: 'Bold text', inline: 'b'},
                {title: 'Red text', inline: 'span', styles: {color: '#ff0000'}},
                {title: 'Red header', block: 'h1', styles: {color: '#ff0000'}},
                {title: 'Example 1', inline: 'span', classes: 'example1'},
                {title: 'Example 2', inline: 'span', classes: 'example2'},
                {title: 'Table styles'},
                {title: 'Table row 1', selector: 'tr', classes: 'tablerow1'}
        ],

        templates: [
                {title: 'Test template 1', content: 'Test 1'},
                {title: 'Test template 2', content: 'Test 2'}
        ]
});

tinymce.init({
        selector: "#bodyar15",
		height : 225,
		width : 750,
        plugins: [
                "advlist autolink autosave link image lists charmap print preview hr anchor pagebreak spellchecker",
                "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
                "table contextmenu directionality emoticons template textcolor paste fullpage textcolor"
        ],

        toolbar1: "newdocument fullpage | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | styleselect formatselect fontselect fontsizeselect",
        toolbar2: "cut copy paste | searchreplace | bullist numlist | outdent indent blockquote | undo redo | link unlink anchor image media code | inserttime preview | forecolor backcolor",
        toolbar3: "table | hr removeformat | subscript superscript | charmap emoticons | print fullscreen | ltr rtl | spellchecker | visualchars visualblocks nonbreaking template pagebreak restoredraft",

        menubar: false,
        toolbar_items_size: 'small',
		//relative_urls: false,
		relative_urls : false,
		remove_script_host : false,
		convert_urls : true,
		//document_base_url: 'http://www.insurancemall2.com/india/',
        style_formats: [
                {title: 'Bold text', inline: 'b'},
                {title: 'Red text', inline: 'span', styles: {color: '#ff0000'}},
                {title: 'Red header', block: 'h1', styles: {color: '#ff0000'}},
                {title: 'Example 1', inline: 'span', classes: 'example1'},
                {title: 'Example 2', inline: 'span', classes: 'example2'},
                {title: 'Table styles'},
                {title: 'Table row 1', selector: 'tr', classes: 'tablerow1'}
        ],

        templates: [
                {title: 'Test template 1', content: 'Test 1'},
                {title: 'Test template 2', content: 'Test 2'}
        ]
});

tinymce.init({
        selector: "#bodyar16",
		height : 225,
		width : 750,
        plugins: [
                "advlist autolink autosave link image lists charmap print preview hr anchor pagebreak spellchecker",
                "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
                "table contextmenu directionality emoticons template textcolor paste fullpage textcolor"
        ],

        toolbar1: "newdocument fullpage | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | styleselect formatselect fontselect fontsizeselect",
        toolbar2: "cut copy paste | searchreplace | bullist numlist | outdent indent blockquote | undo redo | link unlink anchor image media code | inserttime preview | forecolor backcolor",
        toolbar3: "table | hr removeformat | subscript superscript | charmap emoticons | print fullscreen | ltr rtl | spellchecker | visualchars visualblocks nonbreaking template pagebreak restoredraft",

        menubar: false,
        toolbar_items_size: 'small',
		//relative_urls: false,
		relative_urls : false,
		remove_script_host : false,
		convert_urls : true,
		//document_base_url: 'http://www.insurancemall2.com/india/',
        style_formats: [
                {title: 'Bold text', inline: 'b'},
                {title: 'Red text', inline: 'span', styles: {color: '#ff0000'}},
                {title: 'Red header', block: 'h1', styles: {color: '#ff0000'}},
                {title: 'Example 1', inline: 'span', classes: 'example1'},
                {title: 'Example 2', inline: 'span', classes: 'example2'},
                {title: 'Table styles'},
                {title: 'Table row 1', selector: 'tr', classes: 'tablerow1'}
        ],

        templates: [
                {title: 'Test template 1', content: 'Test 1'},
                {title: 'Test template 2', content: 'Test 2'}
        ]
});
tinymce.init({
        selector: "#reason1",
		height : 225,
		width : 750,
        plugins: [
                "advlist autolink autosave link image lists charmap print preview hr anchor pagebreak spellchecker",
                "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
                "table contextmenu directionality emoticons template textcolor paste fullpage textcolor"
        ],

        toolbar1: "newdocument fullpage | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | styleselect formatselect fontselect fontsizeselect",
        toolbar2: "cut copy paste | searchreplace | bullist numlist | outdent indent blockquote | undo redo | link unlink anchor image media code | inserttime preview | forecolor backcolor",
        toolbar3: "table | hr removeformat | subscript superscript | charmap emoticons | print fullscreen | ltr rtl | spellchecker | visualchars visualblocks nonbreaking template pagebreak restoredraft",

        menubar: false,
        toolbar_items_size: 'small',
		//relative_urls: false,
		relative_urls : false,
		remove_script_host : false,
		convert_urls : true,
		//document_base_url: 'http://www.insurancemall2.com/india/',
        style_formats: [
                {title: 'Bold text', inline: 'b'},
                {title: 'Red text', inline: 'span', styles: {color: '#ff0000'}},
                {title: 'Red header', block: 'h1', styles: {color: '#ff0000'}},
                {title: 'Example 1', inline: 'span', classes: 'example1'},
                {title: 'Example 2', inline: 'span', classes: 'example2'},
                {title: 'Table styles'},
                {title: 'Table row 1', selector: 'tr', classes: 'tablerow1'}
        ],

        templates: [
                {title: 'Test template 1', content: 'Test 1'},
                {title: 'Test template 2', content: 'Test 2'}
        ]
});
tinymce.init({
        selector: "#reason2",
		height : 225,
		width : 750,
        plugins: [
                "advlist autolink autosave link image lists charmap print preview hr anchor pagebreak spellchecker",
                "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
                "table contextmenu directionality emoticons template textcolor paste fullpage textcolor"
        ],

        toolbar1: "newdocument fullpage | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | styleselect formatselect fontselect fontsizeselect",
        toolbar2: "cut copy paste | searchreplace | bullist numlist | outdent indent blockquote | undo redo | link unlink anchor image media code | inserttime preview | forecolor backcolor",
        toolbar3: "table | hr removeformat | subscript superscript | charmap emoticons | print fullscreen | ltr rtl | spellchecker | visualchars visualblocks nonbreaking template pagebreak restoredraft",

        menubar: false,
        toolbar_items_size: 'small',
		//relative_urls: false,
		relative_urls : false,
		remove_script_host : false,
		convert_urls : true,
		//document_base_url: 'http://www.insurancemall2.com/india/',
        style_formats: [
                {title: 'Bold text', inline: 'b'},
                {title: 'Red text', inline: 'span', styles: {color: '#ff0000'}},
                {title: 'Red header', block: 'h1', styles: {color: '#ff0000'}},
                {title: 'Example 1', inline: 'span', classes: 'example1'},
                {title: 'Example 2', inline: 'span', classes: 'example2'},
                {title: 'Table styles'},
                {title: 'Table row 1', selector: 'tr', classes: 'tablerow1'}
        ],

        templates: [
                {title: 'Test template 1', content: 'Test 1'},
                {title: 'Test template 2', content: 'Test 2'}
        ]
});
tinymce.init({
        selector: "#reason3",
		height : 225,
		width : 750,
        plugins: [
                "advlist autolink autosave link image lists charmap print preview hr anchor pagebreak spellchecker",
                "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
                "table contextmenu directionality emoticons template textcolor paste fullpage textcolor"
        ],

        toolbar1: "newdocument fullpage | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | styleselect formatselect fontselect fontsizeselect",
        toolbar2: "cut copy paste | searchreplace | bullist numlist | outdent indent blockquote | undo redo | link unlink anchor image media code | inserttime preview | forecolor backcolor",
        toolbar3: "table | hr removeformat | subscript superscript | charmap emoticons | print fullscreen | ltr rtl | spellchecker | visualchars visualblocks nonbreaking template pagebreak restoredraft",

        menubar: false,
        toolbar_items_size: 'small',
		//relative_urls: false,
		relative_urls : false,
		remove_script_host : false,
		convert_urls : true,
		//document_base_url: 'http://www.insurancemall2.com/india/',
        style_formats: [
                {title: 'Bold text', inline: 'b'},
                {title: 'Red text', inline: 'span', styles: {color: '#ff0000'}},
                {title: 'Red header', block: 'h1', styles: {color: '#ff0000'}},
                {title: 'Example 1', inline: 'span', classes: 'example1'},
                {title: 'Example 2', inline: 'span', classes: 'example2'},
                {title: 'Table styles'},
                {title: 'Table row 1', selector: 'tr', classes: 'tablerow1'}
        ],

        templates: [
                {title: 'Test template 1', content: 'Test 1'},
                {title: 'Test template 2', content: 'Test 2'}
        ]
});
tinymce.init({
        selector: "#reason4",
		height : 225,
		width : 750,
        plugins: [
                "advlist autolink autosave link image lists charmap print preview hr anchor pagebreak spellchecker",
                "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
                "table contextmenu directionality emoticons template textcolor paste fullpage textcolor"
        ],

        toolbar1: "newdocument fullpage | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | styleselect formatselect fontselect fontsizeselect",
        toolbar2: "cut copy paste | searchreplace | bullist numlist | outdent indent blockquote | undo redo | link unlink anchor image media code | inserttime preview | forecolor backcolor",
        toolbar3: "table | hr removeformat | subscript superscript | charmap emoticons | print fullscreen | ltr rtl | spellchecker | visualchars visualblocks nonbreaking template pagebreak restoredraft",

        menubar: false,
        toolbar_items_size: 'small',
		//relative_urls: false,
		relative_urls : false,
		remove_script_host : false,
		convert_urls : true,
		//document_base_url: 'http://www.insurancemall2.com/india/',
        style_formats: [
                {title: 'Bold text', inline: 'b'},
                {title: 'Red text', inline: 'span', styles: {color: '#ff0000'}},
                {title: 'Red header', block: 'h1', styles: {color: '#ff0000'}},
                {title: 'Example 1', inline: 'span', classes: 'example1'},
                {title: 'Example 2', inline: 'span', classes: 'example2'},
                {title: 'Table styles'},
                {title: 'Table row 1', selector: 'tr', classes: 'tablerow1'}
        ],

        templates: [
                {title: 'Test template 1', content: 'Test 1'},
                {title: 'Test template 2', content: 'Test 2'}
        ]
});
tinymce.init({
        selector: "#reason5",
		height : 225,
		width : 750,
        plugins: [
                "advlist autolink autosave link image lists charmap print preview hr anchor pagebreak spellchecker",
                "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
                "table contextmenu directionality emoticons template textcolor paste fullpage textcolor"
        ],

        toolbar1: "newdocument fullpage | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | styleselect formatselect fontselect fontsizeselect",
        toolbar2: "cut copy paste | searchreplace | bullist numlist | outdent indent blockquote | undo redo | link unlink anchor image media code | inserttime preview | forecolor backcolor",
        toolbar3: "table | hr removeformat | subscript superscript | charmap emoticons | print fullscreen | ltr rtl | spellchecker | visualchars visualblocks nonbreaking template pagebreak restoredraft",

        menubar: false,
        toolbar_items_size: 'small',
		//relative_urls: false,
		relative_urls : false,
		remove_script_host : false,
		convert_urls : true,
		//document_base_url: 'http://www.insurancemall2.com/india/',
        style_formats: [
                {title: 'Bold text', inline: 'b'},
                {title: 'Red text', inline: 'span', styles: {color: '#ff0000'}},
                {title: 'Red header', block: 'h1', styles: {color: '#ff0000'}},
                {title: 'Example 1', inline: 'span', classes: 'example1'},
                {title: 'Example 2', inline: 'span', classes: 'example2'},
                {title: 'Table styles'},
                {title: 'Table row 1', selector: 'tr', classes: 'tablerow1'}
        ],

        templates: [
                {title: 'Test template 1', content: 'Test 1'},
                {title: 'Test template 2', content: 'Test 2'}
        ]
});
</script>
<?php include("includes/footer.php"); ?>

Directory Contents

Dirs: 17 × Files: 180

Name Size Perms Modified Actions
ajax DIR
- drwxr-xr-x 2024-11-22 17:53:02
Edit Download
calender DIR
- drwxr-xr-x 2024-11-22 17:53:02
Edit Download
ckeditor DIR
- drwxr-xr-x 2024-11-22 17:53:01
Edit Download
- drwxr-xr-x 2024-11-22 17:53:01
Edit Download
Classes DIR
- drwxr-xr-x 2025-10-15 06:13:59
Edit Download
css DIR
- drwxr-xr-x 2024-11-22 17:53:01
Edit Download
file DIR
- drwxr-xr-x 2024-11-22 17:53:01
Edit Download
fonts DIR
- drwxr-xr-x 2024-11-22 17:53:01
Edit Download
images DIR
- drwxr-xr-x 2024-11-22 17:53:01
Edit Download
includes DIR
- drwxr-xr-x 2025-10-09 12:56:01
Edit Download
js DIR
- drwxr-xr-x 2024-11-22 17:53:01
Edit Download
lib DIR
- drwxr-xr-x 2024-11-22 17:53:02
Edit Download
mail DIR
- drwxr-xr-x 2024-11-22 17:53:01
Edit Download
- drwxr-xr-x 2024-11-22 17:53:02
Edit Download
- drwxr-xr-x 2025-10-16 00:35:38
Edit Download
- drwxr-xr-x 2025-10-11 08:48:21
Edit Download
- drwxr-xr-x 2024-11-22 17:53:02
Edit Download
38.77 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
42.77 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
41.12 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
41.12 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
7.62 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
6.89 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
30.11 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
28.25 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
1.69 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
2.87 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
2.47 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
707 B lrw-r--r-- 2024-11-22 17:53:02
Edit Download
327 B lrw-r--r-- 2024-11-22 17:53:02
Edit Download
550 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
307 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
375 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
7.98 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
16.99 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
17.20 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
17.28 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
19.42 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
21.00 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
16.67 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
20.97 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
163 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
1.69 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
61.50 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
36.72 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
57.19 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
57.47 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
57.00 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
556 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
31.43 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
31.92 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
29.50 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
27.39 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
7.88 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
7.45 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
44.99 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
49.20 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
47.30 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
44.86 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
41.89 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
48.41 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
48.56 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
47.96 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
48.75 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
49.16 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
8.48 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
6.42 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
16.62 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
148.92 KB lrw-r--r-- 2025-11-04 14:12:04
Edit Download
9.00 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
5.22 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
5.78 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
5.24 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
12.65 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
4.82 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
4.82 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
2.80 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
2.16 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
8.97 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
8.25 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
7.08 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
19.91 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
3.49 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
932 B lrw-r--r-- 2024-11-22 17:53:02
Edit Download
344 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
771 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
809 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
826 B lrw-r--r-- 2024-11-22 17:53:02
Edit Download
772 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
778 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
7.06 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
6.02 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
9.03 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
8.74 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
9.31 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
8.93 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
9.83 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
5.80 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
10.61 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
192 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
5.22 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
2.07 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
749 B lrw-r--r-- 2024-11-22 17:53:02
Edit Download
1.99 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
296 B lrw-r--r-- 2024-11-22 17:53:02
Edit Download
1.68 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
242 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
1.08 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
1.53 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
10.44 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
15.13 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
40.82 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
30.67 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
19.45 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
17.58 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
3.03 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
8.98 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
2.68 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
2.39 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
2.09 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
5.81 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
438 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
6.92 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
7.69 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
8.55 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
8.99 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
8.92 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
8.18 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
3.95 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
9.62 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
9.48 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
8.93 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
8.21 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
20.92 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
8.76 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
9.96 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
35.49 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
31.28 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
35.54 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
4.18 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
411 B lrw-r--r-- 2024-11-22 17:53:02
Edit Download
1.19 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
28.51 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
8.56 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
4.33 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
4.46 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
434 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
3.52 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
3.68 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
8.55 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
12.33 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
574 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
2.00 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
2.92 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
16.62 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
94.70 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
86.22 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
14.24 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
154 B lrw-r--r-- 2024-11-22 17:53:02
Edit Download
93.59 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
50.40 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
75.06 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
97.22 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
98.05 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
5.25 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
8.50 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
3.79 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
3.95 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
8.36 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
913 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
464 B lrw-r--r-- 2024-11-22 17:53:02
Edit Download
471 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
3.28 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
538 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
3.28 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
288 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
274 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
369 B lrw-r--r-- 2024-11-22 17:53:02
Edit Download
410 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
9.05 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
13.89 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
13.59 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
19.04 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
18.54 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
19.02 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
4.51 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
15.05 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
12.87 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
7.00 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
907 B lrw-r--r-- 2024-11-22 17:53:02
Edit Download
9.60 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
3.36 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
18.63 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
29.58 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
25.65 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
24.25 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download
6.65 KB lrw-r--r-- 2024-11-22 17:53:02
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).