button click
Posted: Mon Dec 15, 2003 8:30 pm
hello and good day.
i'm new to php, and i'm having a problem on how to make my button
call a php function???
thanks for the help.
here's my code, is this correct?????:
i'm new to php, and i'm having a problem on how to make my button
call a php function???
thanks for the help.
here's my code, is this correct?????:
Code: Select all
<?php
function clickme() {
print "button click";
}
?>
<html>
<head>
</head>
<body>
<input type="button" name="clickme" value = "Click me" onclick="clickme()"/>
</body>
</html>