单击同一页面中的html标记时调用php函数

时间:2014-03-05 09:12:30

标签: php html

/*
//Want to call a php function when on clicking a tag
// Want to call a php function when on clicking a tag
//Want to call a php function when on clicking a tag
// Want to call a php function when on clicking a tag
*/


<?PHP 
//starting of a function
function callfun(id)
{
//prints the parameter of the function
echo id;
}

//call a php function when clicks on a paragraph
echo '<p id="xyz" onClick="callfun(id)">Click Me </p>';

?>
/*Want to call a php function when on clicking a tag
Want to call a php function when on clicking a tag
Want to call a php function when on clicking a tag
Want to call a php function when on clicking a tag

*/

2 个答案:

答案 0 :(得分:0)

您可以使用某些技术来执行此操作。一种方法是使用ajax调用来调用另一个脚本。如果您不知道ajax是什么,请解释http://bg.wikipedia.org/wiki/Ajax

另一种认为你可以尝试的只是使用javascript并在javascript中翻译你的功能。

答案 1 :(得分:0)

PHP不是这样的。 我建议你看一些有关语言技巧的教程。 首先,您需要了解服务器端和客户端之间的区别。 PHP没有在客户端运行! 根据您的需要,您必须使用AJAX函数,该函数将向服务器调用请求。该请求将执行PHP函数并将答案返回给客户端浏览器。之后,您可以根据需要处理它。