Current File : /home/inlingua/public_html/sensoriumpsychologists.com/diagnostics/screening/screening_available.php |
<?php session_start(); //require_once("../franchise_between/check_franchise.php");?>
<?php require_once("../franchise_between/user_details_msg_setup.php");?>
<?php require_once("../franchise_between/validate_functions.php");?>
<?php require_once("../franchise_between/student_funcs.php");?>
<?php
$ref_no=$_GET['ref_no'];
$franchise_id=$_GET['school_id'];
$validate_obj=new validate_functions();
$validate_obj->check_isset_empty($ref_no,"ref_no");
$validate_obj->check_is_num($ref_no,"ref_no");
//echo '<pre>';print_r($_SESSION);
?>
<?php
$student_obj=new student_funcs();
$student_obj->set_value("franchise_id",$franchise_id);
$student_obj->view_child($ref_no);
$child_name=$student_obj->get_value("child_name");
$email=$student_obj->get_value("email");
$age=$student_obj->get_value("age");
$gender=$student_obj->get_value("gender");
$registration_no=$student_obj->get_value("registration_no");
$registration_date=$student_obj->get_value("registration_date");
$school_name=$student_obj->get_value("school_name");
$problem=$student_obj->get_value("problem");
$dob_date=$student_obj->get_value("dob_date");
$theme_link=$student_obj->get_value("theme_class");
$theme_font=$student_obj->get_value("theme_font");
$education=$student_obj->get_value("education");
switch($education){
case '1' :$education="1st";break;
case '2' :$education="2nd";break;
case '3' :$education="3rd";break;
case '4' :$education="4th";break;
case '5' :$education="5th";break;
case '6' :$education="6th";break;
case '7' :$education="7th";break;
case '8' :$education="8th";break;
case '9' :$education="9th";break;
case '10' :$education="10th";break;
}
include("common/page_head.php");
include("common/header_var.php");
$top_children=$top_val;
include("../../include/header_2.php");?>
<div class="site-breadcrumb">
<div class="container">
<a href="../../index.php"><i class="fa fa-home"></i> Home</a> <i class="fa fa-angle-right"></i>
<span>Screening</span>
</div>
</div>
<section class="about-section spad pt-0">
<div class="container">
<div class="section-title text-center">
<h3>Thank you for registring yourself !!</h3>
<p></p>
</div>
<div class="row">
<div class="col-md-12 col-lg-12">
<table border="0" class="tables_fieldset" cellpadding="3px" cellspacing="0">
<?php require_once("common/student_summary_in_page_registered.php");?>
<tr>
<td colspan="3" style="line-height:25px;">
<br>
<h5>Login details sent to your registered email id.</h5>
</td>
</tr>
</table>
</div>
</div>
</div>
</section>
<?php
echo "<meta http-equiv=\"refresh\" content=\"10;URL=php_scripts_old/logout.php\">";
include("../../include/footer_2.php");?>