Here is a demonstration on how to say "Hello World".
CODE
<?php
$text = "Hello World";
echo($text);
?>
$text = "Hello World";
echo($text);
?>
CODE
<?php
class hello {
function auto_run() {
$this->hello_world();
}
function hello_world() {
echo($this->text());
}
function text() {
return "Hello World";
}
}
?>
class hello {
function auto_run() {
$this->hello_world();
}
function hello_world() {
echo($this->text());
}
function text() {
return "Hello World";
}
}
?>
CODE
<?php
echo("Hello World");
?>
echo("Hello World");
?>
