Şuanki Dizin: /home/wwwdreamtechnolo/public_html/rpcollege.edu.in/ |
Şuanki Dosya : /home/wwwdreamtechnolo/public_html/rpcollege.edu.in/alumni-feedback.php |
<?php require_once("admin/lib/functions.php"); $db = new login_function(); $flag = 0; $name = ""; $name_error = ""; $email_id = ""; $email_error = ""; $contact_no = ""; $contact_no_error =""; $message_error = ""; $message = ""; $passing = ""; $department = ""; $occupation = ""; $suggestion = ""; $succ_flag = 0; if(isset($_POST['contact_btn'])) { $name = $_POST['name']; $email_id = $_POST['email_id']; $contact_no = $_POST['contact_no']; $passing = $_POST['passing']; $department = $_POST['department']; $occupation = $_POST['occupation']; $activities = $_POST['activities']; $development = $_POST['development']; $facilities = $_POST['facilities']; $c_activities = $_POST['c_activities']; $learning = $_POST['learning']; $counselling = $_POST['counselling']; $library = $_POST['library']; $communication = $_POST['communication']; $career = $_POST['career']; $p_facilities = $_POST['p_facilities']; $suggestion = $_POST['suggestion']; if($contact_no=="") { $contact_no_error = "Please enter contact number"; $error_counter = 1; $flag = 1; } else if(!is_numeric($contact_no)) { $contact_no_error = "Please enter valid contact number"; $error_counter = 1; $flag = 1; } else if(strlen($contact_no)<10 OR strlen($contact_no)>10) { $contact_no_error = "Please enter valid 10 digit contact no"; $error_counter = 1; $flag = 1; } if($flag == 0) { if($db->add_alumni_feedback($name,$email_id,$contact_no,$passing,$department,$occupation,$activities,$development,$facilities,$c_activities,$learning,$counselling,$library,$communication,$career,$p_facilities,$suggestion)) { $succ_flag = 1; $name = ""; $email_id = ""; $contact_no = ""; $message = ""; $passing = ""; $department = ""; $occupation = ""; $suggestion = ""; } } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="description" content=""> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> <!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags --> <!-- Title --> <title></title> <!-- Favicon --> <link rel="icon" href="img/core-img/favicon.ico"> <!-- Core Stylesheet --> <link rel="stylesheet" href="style.css"> <style> body { } .header_part { margin:0px; } .main_heading { text-align:center; color:#104075; font-size:20px; font-weight:bold; } @media only screen and (max-width: 600px) { .img { width:20px; height:20px; } } label { font-weight:bold; } .tab_data { background:#E91546; font-weight:bold; font-size:16px; color:white; border-right:0px solid black; } tr td { padding:10px; border:0px solid black; text-align:center; } th { padding:10px; } .order_txt { height:30px; width:310px; box-shadow:0px 0px 3px 0px #dedede ; resize :none; border:1px solid #DFDFDF; } .error_msgs { color:red; } </style> </head> <body> <!-- ##### Preloader ##### --> <div id="preloader"> <i class="circle-preloader"></i> </div> <!-- ##### Header Area Start ##### --> <?php include('header.php'); ?> <!-- ##### Header Area End ##### --> <div class="breadcumb-area bg-img" style="background-image: url(img/bg-img/breadcumb.jpg);"> <div class="bradcumbContent"> <h2>Alumni Feedback</h2> </div> </div> <!-- ##### Breadcumb Area End ##### --> <!-- ##### About Us Area Start ##### --> <section class="about-us-area mt-50 section-padding-100" style="min-height:300px;"> <div class="container"> <div class="data_container" style="margin-top:10px; min-height:1000px;"> <div> <div class="header_part" style="padding:50px;"> <div class="col-lg-12 col-xs-12 col-sm-12" style=" background-repeat: no-repeat; background-position: center; background-color:#F0F0F0;"> <div style="margin:auto; width:72%;"> <section class="main_heading" id="effect" style="margin-top:-4px; font-family: 'Lobster', cursive; font-family: 'Libre Baskerville', serif;"> Feedback From Alumni </section> <!--<span style="font-size:17px;font-family: 'Lobster', cursive; font-family: 'Libre Baskerville', serif;"><center>District-Solapur </center> </span>--> <center><span style="color: #7FFF00; font-weight:bold; font-size:18px; text-align:center; background-color:#880015; font-family: 'Lobster', cursive; font-family: 'Libre Baskerville', serif;" class="blink txtxxx">Feedback Form for the Academic Year: <?php echo date("Y")-1; ?> -<?php echo date("Y"); ?></span></center> <center><span style="color: #808080; font-weight:bold; font-size:18px; text-align:center; font-family: 'Lobster', cursive; font-family: 'Libre Baskerville', serif; margin-bottom:20px;">Alumni feedback on Design & Review of syllabus</span></center> </div> </div> </div> </div> <form method="post" action=""> <table border="0"> <tr> <td class="msg" colspan=2> <?php if($succ_flag==1) { ?> <div class="alert alert-success"> <strong>Success!</strong> Your message sent sucessfully </div> <?php } else if($flag==2) { ?> <div class="alert alert-danger"> <strong>Failed!</strong> Sorry, Your message not sent </div> <?php } ?> </td> </tr> <tr style="height:20px;"> <td></td> </tr> <tr class="tr1"> <td> <label>Name Of the Alumni</label> </td> <td> <input type="textbox" class="order_txt" name="name" id="txtname" value="<?php echo $name;?>" required> <br /> <span class="error_msgs"><?php echo $name_error; ?></span> </td> </tr> <tr class="tr1"> <td> <label >Email Id</label> </td> <td> <input type="email" class="order_txt" name="email_id" id="txtemail" value="<?php echo $email_id;?>"> <br /> <span class="error_msgs"><?php echo $email_error; ?></span> </td> </tr> <tr class="tr1"> <td> <label>Contact No</label> </td> <td> <input type="number" class="order_txt" name="contact_no" id="txtcno" value="<?php echo $contact_no;?>" required> <br /> <span class="error_msgs"><?php echo $contact_no_error; ?></span> </td> </tr> <tr class="tr1"> <td> <label>Year of Passing</label> </td> <td> <input type="textbox" class="order_txt" name="passing" id="txtcno" value="<?php echo $passing;?>" required> </td> </tr> <tr class="tr1"> <td> <label>Name of Department</label> </td> <td> <input type="textbox" class="order_txt" name="department" id="txtcno" value="<?php echo $department;?>" required> </td> </tr> <tr class="tr1"> <td> <label>Present Occupation</label> </td> <td> <input type="textbox" class="order_txt" name="occupation" id="txtcno" value="<?php echo $occupation;?>" required> </td> </tr> <tr style="height:0px;"> <td></td> </tr> </table> <p>You are requested to select appropriate option for the following points.</p><br /> <p>1. How do you rate development activities organized by the Institute?</p><br /> <input type="radio" name="activities" value="Excellent" checked>Excellent<br /> <input type="radio" name="activities" value="Very Good">Very Good<br /> <input type="radio" name="activities" value="Good">Good<br /> <input type="radio" name="activities" value="Average">Average<br /><br /> <p>2. Are you willing to contribute to the development of the college?</p><br /> <input type="radio" name="development" value="Yes" checked>Yes<br /> <input type="radio" name="development" value="No">No <br /><br /> <p>3. Infrastructure Facilities </p><br /> <input type="radio" name="facilities" value="Excellent" checked>Excellent<br /> <input type="radio" name="facilities" value="Very Good">Very Good<br /> <input type="radio" name="facilities" value="Good">Good<br /> <input type="radio" name="facilities" value="Average">Average<br /><br /> <p>4. Sports and cultural activities </p><br /> <input type="radio" name="c_activities" value="Excellent" checked>Excellent<br /> <input type="radio" name="c_activities" value="Very Good">Very Good<br /> <input type="radio" name="c_activities" value="Good">Good<br /> <input type="radio" name="c_activities" value="Average">Average<br /><br /> <p>5. The Teaching Learning Environment </p><br /> <input type="radio" name="learning" value="Excellent" checked>Excellent<br /> <input type="radio" name="learning" value="Very Good">Very Good<br /> <input type="radio" name="learning" value="Good">Good<br /> <input type="radio" name="learning" value="Average">Average<br /><br /> <p>6. Student's counselling and guidance </p><br /> <input type="radio" name="counselling" value="Excellent" checked>Excellent<br /> <input type="radio" name="counselling" value="Very Good">Very Good<br /> <input type="radio" name="counselling" value="Good">Good<br /> <input type="radio" name="counselling" value="Average">Average<br /><br /> <p>7. Library Facilities </p><br /> <input type="radio" name="library" value="Excellent" checked>Excellent<br /> <input type="radio" name="library" value="Very Good">Very Good<br /> <input type="radio" name="library" value="Good">Good<br /> <input type="radio" name="library" value="Average">Average<br /><br /> <p>8. Use of Information and communication technology in the college </p><br /> <input type="radio" name="communication" value="Excellent" checked>Excellent<br /> <input type="radio" name="communication" value="Very Good">Very Good<br /> <input type="radio" name="communication" value="Good">Good<br /> <input type="radio" name="communication" value="Average">Average<br /><br /> <p>9. Career oriented programs </p><br /> <input type="radio" name="career" value="Excellent" checked>Excellent<br /> <input type="radio" name="career" value="Very Good">Very Good<br /> <input type="radio" name="career" value="Good">Good<br /> <input type="radio" name="career" value="Average">Average<br /><br /> <p>10. Other facilities provided by the college </p><br /> <input type="radio" name="p_facilities" value="Excellent" checked>Excellent<br /> <input type="radio" name="p_facilities" value="Very Good">Very Good<br /> <input type="radio" name="p_facilities" value="Good">Good<br /> <input type="radio" name="p_facilities" value="Average">Average<br /><br /> <p>11. Suggestions if any </p><br /> <textarea name="suggestion" class="order_txt" name="txtcno" id="txtcno" style=" height:80px" required><?php echo $suggestion; ?></textarea><br /> <table> <tr class="tr1"> <td></td> <td class="order_btn_contnr"> <input type="submit" value="Submit" name="contact_btn" class="btn academy-btn mt-30 contact_btn"> </td> </tr> <tr> <td></td> </tr> </table> </form> </div> </div> </section> <!-- ##### About Us Area End ##### --> <!-- ##### Team Area Start ##### --> <!-- ##### Footer Area Start ##### --> <?php include('footer.php'); ?> <!-- ##### Footer Area Start ##### --> <!-- ##### All Javascript Script ##### --> <!-- jQuery-2.2.4 js --> <script src="js/jquery/jquery-2.2.4.min.js"></script> <!-- Popper js --> <script src="js/bootstrap/popper.min.js"></script> <!-- Bootstrap js --> <script src="js/bootstrap/bootstrap.min.js"></script> <!-- All Plugins js --> <script src="js/plugins/plugins.js"></script> <!-- Active js --> <script src="js/active.js"></script> </body> </html>
Linux 65-254-81-4.cprapid.com 5.14.0-284.11.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 9 05:49:00 EDT 2023 x86_64
Apache
65.254.81.4