There's no way for the browser to manipulate something it never sees or knows about. You can submit *values* back to the server in a GET or POST request, by clicking on a link (GET), submitting a form(GET or POST), or ajax (usually GET or POST). PHP can then process that request and attached values and send data back as HTML, XML, JSON or plain text.
Cheers, David korsakov wrote:
Thanks for reminding me of the difference! So, isn't there any way to manipulate PHP variables without actually submitting the whole form?