In PHP we use echo for print text or number in screen. example is below.
Usefull String prebuilt function.=>
strlen() => check lenth of string.
echo strlen("Hello World");
$name = 'Anil Singh';
echo $name;
$name = 'Anil Singh';
echo $name;
0 comments
Post a Comment