Jason Wilkes wrote:
> So far so good, and all works well. Except for one
> user id (actually id=333), which causes an "internal
> server error". If I put print debugging lines in -
> everything works (even for user 333). If I take them
> out again all other users work fine except 333.
> Can anybod
Levon,
Thanks for the swift reply - but nope - no different.
--- Levon Barker <[EMAIL PROTECTED]> wrote: > Not sure
but I would try changing the query:
>
> my $sth = $dbh->prepare("
> SELECT id from session
> WHERE field = ?
> ");
>
Not sure but I would try changing the query:
my $sth = $dbh->prepare("
SELECT id from session
WHERE field = ?
");
$sth->bind_param( 1, $SessionID );
$sth->execute;
That might help.
-Original Message-
Fro