RE: [PHP-DB] Function questions...

2002-12-06 Thread NIPP, SCOTT V (SBCSI)
Duh, OK. That fixed me right up. Thanks. Now if I can just figure out the 'Select All' option. -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 2:28 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Function questions... O

Re: [PHP-DB] Function questions...

2002-12-06 Thread Jason Wong
On Saturday 07 December 2002 04:12, NIPP, SCOTT V (SBCSI) wrote: > OK. Stumped once again. This function is now properly generating > and displaying the form as I intend it to. The only problem is that the > optional text and button at the end of the function is actually displaying > above the c

RE: [PHP-DB] Function questions...

2002-12-06 Thread NIPP, SCOTT V (SBCSI)
ckboxes automatically and refreshes the page. You know, a select all button. I know nothing of Javascript, but this is what should do this, correct? Once again, any and all help is most appreciated. -----Original Message- From: Mark [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 1

RE: [PHP-DB] Function questions...

2002-12-06 Thread NIPP, SCOTT V (SBCSI)
, December 06, 2002 1:58 PM To: '[EMAIL PROTECTED]' Subject: Re: [PHP-DB] Function questions... $sys is an array, so echoing $sys will cause problems. Are you trying to get a 4xN table of values and checkboxes? There's got to be an easier way... --- "NIPP, SCOTT V (SBCSI

Re: [PHP-DB] Function questions...

2002-12-06 Thread Mark
$sys is an array, so echoing $sys will cause problems. Are you trying to get a 4xN table of values and checkboxes? There's got to be an easier way... --- "NIPP, SCOTT V (SBCSI)" <[EMAIL PROTECTED]> wrote: > I am trying to convert something that I have working in a PHP > script > to be a fun

Re: [PHP-DB] Function questions...

2002-12-06 Thread Ignatius Reilly
_ - Original Message - From: "NIPP, SCOTT V (SBCSI)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, December 06, 2002 6:04 PM Subject: [PHP-DB] Function questions... > I am trying to convert something that I have working in a P

[PHP-DB] Function questions...

2002-12-06 Thread NIPP, SCOTT V (SBCSI)
I am trying to convert something that I have working in a PHP script to be a function in a library type of file. The code contained in the function works fine in another script, but I am currently getting no output from the function. I have a question about the nature of functions that ma