Answers for "call function in other fucntion php"

PHP
0

call function in php

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

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

phph call functions from other .php file

<?php
  include 'File1.php';
  echo myFunc(1,"Hello edureka"); 
?>
Posted by: Guest on September-06-2021

Code answers related to "call function in other fucntion php"

Browse Popular Code Answers by Language