Blog

Archive for the PHP Category


Create PHP Title & Meta Description Tags with PHP Array
Posted on July 20, 2012 in Array, Function, PHP by Matt Jennings

Below is a function on how to create tags with an array and foreach method.

<?php
function title_meta_descrip()
{
$_url = $_SERVER[REQUEST_URI];
$phpfilename …

Read more


Get Root URL with PHP
Posted on November 15, 2011 in PHP by Matt Jennings

PHP predefined variable to get the root URL.

[php]

[/php]