calling a php function through onclick
-
is it possible to call a php function with in onclick event? if its possible how i can do this? :-D
-
is it possible to call a php function with in onclick event? if its possible how i can do this? :-D
Yes, Definitive. Well, when you're sending your form to server side, in the server side check whether the button define or not.
<?php
if (isset($_REQUEST['buttonName']))
func();function func()
{
...
}?>
-
Yes, Definitive. Well, when you're sending your form to server side, in the server side check whether the button define or not.
<?php
if (isset($_REQUEST['buttonName']))
func();function func()
{
...
}?>
but how to call a function through button onclick this function. :-D
-
but how to call a function through button onclick this function. :-D
You'd have to use AJAX for that and make a request to the server, to a PHP page, (using JavaScript) process the request with your PHP script then return some data back to the page and do with it what you want with JavaScript. Regards, --Perspx
"I've got my kids brainwashed: You don't use Google, and you don't use an iPod." - Steve Ballmer
"Some people have told me they don't think a fat penguin really embodies the grace of Linux, which just tells me they have never seen an angry penguin charging at them in excess of 100mph." - Linus Torvalds -
You'd have to use AJAX for that and make a request to the server, to a PHP page, (using JavaScript) process the request with your PHP script then return some data back to the page and do with it what you want with JavaScript. Regards, --Perspx
"I've got my kids brainwashed: You don't use Google, and you don't use an iPod." - Steve Ballmer
"Some people have told me they don't think a fat penguin really embodies the grace of Linux, which just tells me they have never seen an angry penguin charging at them in excess of 100mph." - Linus TorvaldsI also want know it? thanks! www.igolfyoo.com[^]
-
I also want know it? thanks! www.igolfyoo.com[^]
i just want to say www.igolfyoo.comwith PHP,but i don't now how to amend! Can you help me? Thanks!