test
<?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']; ?>