RE: [PHP-WIN] newbie BASIC sessions...

2003-02-25 Thread Robert Nürnberg
>From php.net (): http://www.php.net/manual/en/function.session-is-registered.php Note: If $_SESSION (or $HTTP_SESSION_VARS for PHP 4.0.6 or less) is used, use isset() to check a variable is registered in $_SESSION The code that should work: (You may not need to add SID to your link, depending on

RE: [PHP-WIN] eval function

2003-02-25 Thread Robert Nürnberg
Why use eval in the first place? $_POST["ADDRESS_ID_".$numb] will work, as will $_POST["ADDRESS_ID_{$numb}"]. -Original Message- From: Kevin Smith [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 1:00 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] eval function Hi All, Does an