RE: [PHP-DB] problem with undefined variable

2003-06-04 Thread Griffiths, Daniel
register_globals must be turned on on your webserver and off on your local server, you are getting the new value for first rec from the GET array registering first_var as a global. Same thing for the PHP_SELF error. So change this you need to get the value of $first_var like

RE: [PHP-DB] problem with undefined variable

2003-06-04 Thread Griffiths, Daniel
sorry, had written first_var instead of first_rec for some reason, should make more sense now! register_globals must be turned on on your webserver and off on your local server, you are getting the new value for first_rec from the GET array registering first_rec as a global. Same thing for