php PointFromText code example
Example 1: php text in thml
<p>Seite abgerufen am <?php echo ( date('d.m.Y \u\m H:i:s') ); ?> Uhr</p>
Example 2: php linkify text
$string = "Look on http://www.google.com";
$string = preg_replace(
"~[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]~",
"<a href=\"\\0\">\\0</a>",
$string);