test
unknown
php
4 years ago
288 B
18
Indexable
<?php
$profileID = $_GET['profileID'];
$stmt = $campist->prepare('SELECT * FROM users_information WHERE profileID = ?');
$stmt->bind_param('s', $profileID);
$stmt->execute();
$result = $stmt->get_result();
$row = $result->fetch_assoc();
print 'ID: ';
print $row['profileID'];
?>Editor is loading...