
April 27th, 2000, 09:41 AM
|
|
Gödelian monster
|
|
Join Date: Jul 1999
Location: Central Florida, USA
|
|
|
If you have a link in your page that calls another object on the same page, there is no way for PHP to interact with it, as that function is being handled on the client side, with the user's browser.
PHP is server-side only, which means that a page HAS to be loaded every time you want PHP to execute something.
Javascript is the way to handle client-side events. When loading, you can use PHP to load data for Javascript to use after the page is loaded.
|