nedense ben bu işe alınamıyor, ama temelde ben bir mysqli sorgudan sonra bir değişken içinde saklanır ne değiştirmeye çalışıyorum, ama ne sebeple olursa olsun, o iş olmaz, burada benim kodu:
$q = $DBH->prepare("SELECT text, position FROM persons WHERE id = ?");
$q->bind_param("i", $id);
$q->execute();
$q->bind_result($text,$position);
if($position <= 5){
$text = "position is too low";
}
echo $text;