Thread
: Tech
What a wild 3 weeks (and php question).
View Single Post
09-08-2021, 12:32 PM
sarettah
see you later, I'm gone
Industry Role:
Join Date: Oct 2002
Posts: 14,058
Damn I suck today
Another issue in what I posted:
try
{
$stmt =
$pdo
->prepare($sql);
}
catch( PDOException $e)
{
die($e
-
getMessage());
}
Should be:
try
{
$stmt =
$pdo
->prepare($sql);
}
catch( PDOException $e)
{
die($e
->
getMessage());
}
.
__________________
All cookies cleared!
sarettah
View Public Profile
Find More Posts by sarettah