Hi,
I have a button that i wont to execute a function when i push it.
$test = "hey dude";
echo "<form action='text.php' method='get'>";
echo "<input type='submit' value='Submit'>";
echo "</form>";
function runtest(){
print $test;
}
how do i get it to work????