On Tue, 2007-07-03 at 09:30 -0400, Jason Pruim wrote:
> Hi Everyone!
>
> Here is some of the code:
> 
> $result = mysql_query($sql);
> echo "<form method='POST' action='update.php' name='ticklers'>";
> echo "<table border='1' bgcolor=".$tableBody." >";
> echo "<tr>
> <TH>ID #</TH>
> <th>Tickler Name</th>
> <th>Tickler Description</th>
> <TH>Completed</th>
> <TH> Day to complete</th>
> <TH>Reschedule Date</TH>
> </tr>";
> 
> while($row = mysql_fetch_array($result)) {
> 
> 
>       echo "<TR><TD bgcolor=".$rowColor.">ID#, $row[0] </td>";// ID #
>       echo "<td bgcolor=".$rowColor.">TicklerName, $row[1]  </td>";//  
> Tickler Name
>       echo "<td bgcolor=".$rowColor.">Instructions, <A href='$row 
> [2]'>Instructions</A></td>";// Instructions
>       echo "<td bgcolor=".$dowColor.">DayOfWeekWord, $dowword </td>";//  
> Day of week word
>       echo "<TD BGCOLOR=".$rowColor.">DateToReschedule, <input type='text'  
> name='txtReschedule' value=''>";//Date to reschedule
>       echo "<TD BGCOLOR=".$rowColor.">DateRescheduled, $Date";//Date  
> stored in timeStamp
> //    echo "<TD bgcolor=".$rowColor."><A href='update.php?taskid=$row[0] 
> &taskdate=$taskdate'>Click here!</A>";
>       echo "<TD bgcolor=".$rowColor.">CheckboxForWhenDone, <input  
> type='checkbox' name='chkDone' value='$row[0]'>";//Check box for when  
> completed
> 
> }

Oh man, blast from the past... BLAST FROM THE PAST!!! Where did you dig
up such ancient HTML? I'm taking a walk down nostalgia lane.
Unfortunately it's making me nauseous as I remember the original trip. I
guess you could call it naustalgia! >:)

Cheers,
Rob.
-- 
.------------------------------------------------------------.
| InterJinn Application Framework - http://www.interjinn.com |
:------------------------------------------------------------:
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for       |
| creating re-usable components quickly and easily.          |
`------------------------------------------------------------'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to