Hey,
I’ve been running into an error with php and mysql and I don’t know why…
Code:
$statement = $connection->prepare(“SELECT online.lastip,online.timestamp FROM online WHERE online.license=?”);
if (!$statement) {
die (“Failed:1” . $connection->error);
}
What’s the problem here?
Thanks in advance!