PDA

View Full Version : No Refresh?



dawizman
June 9th, 2002, 10:34
Ok, is it possible to make a link to the same page you are viewing without having to refresh the page?

ex) I am on index.php
I click on a link that goes to index.php?page=2

the page stays loaded but the value of the variable $page is now 2, and the if / else script executes?

Dusty
June 9th, 2002, 17:45
No, PHP is not a client-side language. Your input will have to go to the server and a new page will have to be output back to the browser.

dawizman
June 9th, 2002, 19:18
ok, thanks.