Posted by ZeldorBlat on 11/17/05 18:59
>Yes, that's correct. What I mean to ask is, do I have to use a form button
>or something for the action to trigger? Or can I create the hyperlink to
>run some function that posts those vars to whichever page I send to the
>function?
PHP operates on the server-side. That is: client makes request,
webserver/PHP process request, webserver sends output to browser. If
you want things to happen on the client-side in between (i.e. redirect
to a different page when the user rolls his mouse over some image) then
you need something like JavaScript.
[Back to original message]
|