So what should they do?
<?php
echo "Hello, this mesg show that you know php, let's start!";
?>
<?php
function show(){
echo "Hello, this mesg show that you know php, let's start!";
}
show();
?>
<?php
function show(){
var $tmps="Hello, this mesg show that you know php, let's start!";
echo $tmps;
}
show();
?>
<?php
function show(){
var $tmps="Hello, this mesg show that you know php, let's start!";
return $tmps;
}
echo show();
?>
<?php
function show(){
return "Hello, this mesg show that you know php, let's start!";
}
echo show();
?>
<?php
var $show= "Hello, this mesg show that you know php, let's start!";
echo $show;
?>
...
PHP is similar to C++...
(I'm not them
... 1st page here meant 1st public page...
)