I need to display the same query multiple time but without array because i need different data
example
$re = $bdd->query("SELECT url, name FROM type);
while($do = $re->fetch()) {
echo $do['url'];
}
while($do = $re->fetch()) {
echo $do['name'];
}
What is the best solution ? Thanks