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
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
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
, 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
$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
I would replace
$query = "SELECT * FROM accounts WHERE verifyurl='$safe_verify_string'";
by
$query = "SELECT * FROM accounts WHERE verifyurl='{$safe_verify_string}'";
to force interpolation of variable $safe_verify_string
HTH
Ignatius
- Original Me