On this site I have collected some code in PHP.
In a future version, I'm equally going to show collections of PHP and MySql code
<?php
$txt="Hello World!";
$x=16;
>?
Hello World!
16
<?php
$txt1="Hello World!";
$txt2="What a nice day!";
echo $txt1 . " " . $txt2;
>?
Hello World! What a nice day!
<?php
echo strlen("Hello world!");
>?
12