Changeset - 7ad078f11fd8
[Not reviewed]
default
0 1 0
ethanzonca - 15 years ago 2010-07-09 17:38:31

Re-added saved sched. links
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
input.php
Show inline comments
 
@@ -233,26 +233,26 @@
 
		-  Scheduler
 
	</h1>
 
</div>
 

	
 
<div id="content">
 
	<h3>
 
		Saved Schedules:
 
	</h3>
 
	<p>
 

	
 
<?php
 
if(isset($_SESSION['saved']))
 
	foreach($_SESSION['saved'] as $schedule)
 
		echo "Saved Schedule<br />";
 
	foreach($_SESSION['saved'] as $key => $schedule)
 
		echo "<a href=\"process.php?savedkey=$key\">Saved Schedule $key</a><br />";
 
else
 
	echo "No saved schedules!<br />";
 
?>
 

	
 
	</p>
 

	
 
<form method="post" action="process.php" id="scheduleForm">
 

	
 
<table id="jsrows">
 
<!-- Header -->
 
	<tr>
 
		<td>Class</td>
 
@@ -305,13 +305,13 @@ else
 
			Nathan Gelderloos
 
		</a>
 
		<br />
 
		with special thanks to 
 
		<a href="http://ethanzonca.com">
 
			Ethan Zonca
 
		</a>
 
	</h5>
 
</div>
 

	
 
</body>
 

	
 
</html>
 
\ No newline at end of file
 
</html>
0 comments (0 inline, 0 general)