I collected an id and wanted to make links for them to go back / forward. How can I do that? Here in this example, $id contains 24 23 20 18 87 6 :
$idcontent = $this->article->getAllArticlesName($_GET["login"]); for($i = 0;$i < count($idcontent); $i++){ $id = $idcontent[$i]["id"]; print_r($id); }