winterfat.tran65
New Member
- Messages
- 2
- Reaction score
- 0
- Points
- 1
<?php
include 'config.php';
$stmt=$con->prepare('SELECT * from users WHERE id=?');
$stmt->bind_param('i', $_GET['id']);
$stmt->execute();
$result=$stmt->get_result();
while($row=$result->fetch_assoc()){
$user=$row['username'];
}
echo $user;
?>
Fatal error: Call to undefined method mysqli_stmt::get_result() in /home/n1413702/public_html/programs/twitter/profile.php on line 9
is the mysqlnd driver installed for x10hosting servers?
include 'config.php';
$stmt=$con->prepare('SELECT * from users WHERE id=?');
$stmt->bind_param('i', $_GET['id']);
$stmt->execute();
$result=$stmt->get_result();
while($row=$result->fetch_assoc()){
$user=$row['username'];
}
echo $user;
?>
Fatal error: Call to undefined method mysqli_stmt::get_result() in /home/n1413702/public_html/programs/twitter/profile.php on line 9
is the mysqlnd driver installed for x10hosting servers?