I inserted data into phpmyadmin and have the select function:
$twitterfingers="select * from answers equivalent where tweet like
'%".$question."%' limit 1";
$state2=$theDatabase->prepare($twitterfingers);
$state2->execute();
$tweets=$state2->fetchAll();
$state2->closeCursor();
?>`
The same tweets keep appearing, I would like a random shuffle of the tweets of appear. Also, it only works when a single word is typed into variable, not a phrase.
Thanks.