[PHP] task Scheduler driving me crazy!

2007-07-03 Thread Jason Pruim
Hi Everyone! Okay, so for those of you who remember I have been going back and forth on how to write a reoccuring task manager program for my office, it's a little bit a labor of love, little bit wanting to expand my knowledge. Anyway, I've hit a problem... I am attempting to add away to

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Robert Cummings
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 THID #/TH thTickler Name/th thTickler

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Jason Pruim
On Jul 3, 2007, at 9:47 AM, Robert Cummings wrote: 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 THID

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Robert Cummings
On Tue, 2007-07-03 at 09:52 -0400, Jason Pruim wrote: On Jul 3, 2007, at 9:47 AM, Robert Cummings wrote: 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'

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Jason Pruim
On Jul 3, 2007, at 9:58 AM, Robert Cummings wrote: 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!

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Andrei
Jason Pruim wrote: On Jul 3, 2007, at 9:47 AM, Robert Cummings wrote: 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'

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Robert Cummings
On Tue, 2007-07-03 at 10:06 -0400, Jason Pruim wrote: On Jul 3, 2007, at 9:58 AM, Robert Cummings wrote: 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

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Jim Lucas
Jason Pruim wrote: Hi Everyone! Okay, so for those of you who remember I have been going back and forth on how to write a reoccuring task manager program for my office, it's a little bit a labor of love, little bit wanting to expand my knowledge. Anyway, I've hit a problem... I am

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Jochem Maas
Robert Cummings wrote: ... I'll add the CSS once I can get the form to work properly, and can figure out how to change the color with css based on a certain value stored in a database IE: $rowColor :) At it's simplest: 'td class='.$rowColor.'' ... if $rowColor is a hex based

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Robert Cummings
On Tue, 2007-07-03 at 17:57 +0200, Jochem Maas wrote: Robert Cummings wrote: ... I'll add the CSS once I can get the form to work properly, and can figure out how to change the color with css based on a certain value stored in a database IE: $rowColor :) At it's simplest:

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Jochem Maas
Robert Cummings wrote: On Tue, 2007-07-03 at 17:57 +0200, Jochem Maas wrote: Robert Cummings wrote: ... I'll add the CSS once I can get the form to work properly, and can figure out how to change the color with css based on a certain value stored in a database IE: $rowColor :) At it's

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Jason Pruim
On Jul 3, 2007, at 12:46 PM, Jochem Maas wrote: Robert Cummings wrote: On Tue, 2007-07-03 at 17:57 +0200, Jochem Maas wrote: Robert Cummings wrote: ... I'll add the CSS once I can get the form to work properly, and can figure out how to change the color with css based on a certain value

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Robert Cummings
On Tue, 2007-07-03 at 13:18 -0400, Jason Pruim wrote: And for anyone that is interested: HTTP://www.raoset.com/tests/ ticklers/viewall.php -- That's the output of the form :) Please don't abuse it! :) My eyes are bleeding... gh. :) Cheers, Rob. --

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread Jason Pruim
I'm matching a color coding scheme that was already established :P But the red on yellow is a little bright ;) On Jul 3, 2007, at 2:08 PM, Robert Cummings wrote: On Tue, 2007-07-03 at 13:18 -0400, Jason Pruim wrote: And for anyone that is interested: HTTP://www.raoset.com/tests/

Re: [PHP] task Scheduler driving me crazy!

2007-07-03 Thread tedd
At 5:05 PM +0300 7/3/07, Andrei wrote: Anyway you should get rid of echoing everything from php... It really gets you mad when you want to change things... while($row = mysql_fetch_array($result)) { ? TR TD bgcolor=?=$rowColor?ID#, ?=$row[0]?/td td