php source code for timetable generation system
#1

i need this code for my projwct work
please send it
Reply
#2
php source code for timetable generation system

This project is aimed at developing a Time Table Generator for Colleges. olleges are supposed to make time tables for each semester which used to be a very tedious and pain staking job. Each teacher and Student is eligible for viewing his own timetable once they are finalized for a given semester but they can't edit them.22. Development of a ser friendly ,feature-rich, practical Appraisal Tracker This project is aimed at enveloping an Appraisal Tracker that is of importance to either an organisation or a college. This praisal Tracker system is used to track the performance of an individual. An individual's performance is rated by himself and his superior in the organization. The tasks for the next 6 months are set by the superior. The performance rating is done based on several attributes (like the timeliness, quality of work, communication skills etc)

Sample Code:

timetable.html:
<form method="POST" action="timetable.php">
<label>Please select a channel:</label>
<select name="channel">
<option name="Ten" >Ten</option>
<option name="Nine">Nine</option>­
<option name="Prime">Prime</option>­
<option name="SBS">SBS</option>
<option name="ABC">ABC</option>
</select>
<br />
<label>Please select a time:</label>
<select name="time">
<option name="7.30">7.30</option>­
<option name="8.00">8.00</option>­
<option name="8.30">8.30</option>­
<option name="9.00">9.00</option>­
<option name="9.30">9.30</option>­
</select>
<br />
<label>Please enter program name:</label>
<input name="program" type="text" size="20" />
<br />
<input type="submit" value="Submit!">
</form>

timetable.php
<?php
/* declare a 2d array accessible by $arr["channel"]["time"].
all programs are initialised to nothing. */

$arr = array(
"Time" => array("7.30", "8.00", "8.30", "9.00", "9.30"),
"Ten" => array("7.30" => "", "8.00" => "", "8.30" => "", "9.00" => "", "9.30" => ""),
"Nine" => array("7.30" => "", "8.00" => "", "8.30" => "", "9.00" => "", "9.30" => ""),
"Prime" => array("7.30" => "", "8.00" => "", "8.30" => "", "9.00" => "", "9.30" => ""),
"SBS" => array("7.30" => "", "8.00" => "", "8.30" => "", "9.00" => "", "9.30" => ""),
"ABC" => array("7.30" => "", "8.00" => "", "8.30" => "", "9.00" => "", "9.30" => ""),
);

/* the programs would be loaded into the array from here. */

/* this step would be updating the database.
for now we will just set the element chosen in the html page. */
$arr[$_POST["channel"]][$_PO­ ST["time"]] = $_POST["program"];

echo "<table border=\"1\">\n";

/* loop through the channels */
foreach($arr as $channel => $value)
{
echo "<tr>";
echo "<td>" . $channel ."</td>";

/* and the times */
foreach($value as $time)
{
echo "<td>" . $time . "</td>";
}
echo "</tr>\n";
}
?>
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Tagged Pages: 8 30 to 9 30 19 to 18,
Popular Searches: source code school timetable php with genetic algorithm, download college timetable management system using php, data flow diagram of timetable generation system, download college timetable management system using php** diagrams for blood donation android app, irony in nine ten by warren leight, source code for timetable generation system using genetic algorithm, timetable generation system using genetics,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  free download college alumni project in php 6 19,561 02-12-2018, 07:06 PM
Last Post:
  online campus recruitment system in php 2 9,475 17-07-2018, 03:03 PM
Last Post: jerry
  free download source code of online college magazine 5 17,817 29-06-2018, 10:09 AM
Last Post: Guest
  opengl source code for butterfly 3 3,259 14-05-2018, 08:57 AM
Last Post: Akshatha k
  program code of solar tracking system using 8051 microcontroller 6 23,316 03-05-2018, 09:30 PM
Last Post: Guest
  ice cream parlour management system in vb source code 4 5,288 04-04-2018, 11:58 PM
Last Post: vprk77
  source code in php for online training and placement cell management 1 6,686 23-03-2018, 09:06 AM
Last Post: ritzi
  free download college website project in html with source code 2 4,621 24-02-2018, 10:46 AM
Last Post: Guest
  citizen card system full code download 2 4,747 19-02-2018, 02:30 PM
Last Post: [email protected]
  source code for hospital management system in jsp 4 1,951 13-01-2018, 10:51 AM
Last Post: dhanabhagya

Forum Jump: