Hi!!!
how can i reload a page without the help of a user (without a button or a link)
if (.........)
{ //reload 1.php}
else{ ....... }
From PHP? You can't. Reloading is client-side, and PHP is server-side. You'll have to use something like JavaScript: document.reload();
like:
{ echo "<script>document.reload();<script>"}
???????? would this work??