This is 4. tutorial for PHP.
This functions is private and user maked functions.
<?phpIf you try this, you can see blank screen.. If you want see 'Hello' world, you must get function.
function sayHello()
{
echo("Hello");
}
?>
<?phpYou can use variables when calling functions.
sayHello();
?>
<?php
function outputHTML($data)
{
echo($data);
}
outputHTML("This Is User Maked Function");
?>
0 yorum:
Yorum Gönder