Answers for "how to call function in php from html"

PHP
0

call php from html

<form action="myphpfile.php">
  <input type="submit" value="click on me!">
</form>
Posted by: Guest on April-30-2021
0

call function in php

<?php
function Testfunction() {
  echo "Hello world!";
}

Testfunction(); // call the function
?>
Posted by: Guest on August-03-2021

Code answers related to "how to call function in php from html"

Browse Popular Code Answers by Language