Changeset - b070212dc462
[Not reviewed]
Merge default
0 1 0
nathang - 15 years ago 2010-07-09 22:35:54
ngelderloos7@gmail.com
Merge
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">
 
<!--	<tr>
 
		<td colspan="11">Name this schedule:
 
			<input type="text" class="required" name="postData[name]" />
 
@@ -312,13 +312,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)