How can I redirect to the same page using PHP?
For example, locally my web address is:
http://localhost/myweb/index.php
How can I r
header('Location: '.$_SERVER['PHP_SELF']);
will also work