Ok… I missed it and don’t know what happened to it before, but I have just brought it back.
The php syntax highlighting is back.
You can use it as you would the CODE tags accept you change it to PHP
the [ CODE ] Tags would give you this
[code]<?php
class LogVisitor
{
// set up the public vars
public $ipAddress;
public $userAgent;
public $timesVisited;
// Database Vars
protected $dbserv = 'localhost';
protected $dbuser = 'root';
protected $dbpass = NULL;
protected $dbbase = 'log';
function LogVisitor()
{
[/code]
Where the [ PHP ] Tags give you this
[php]<?php
class LogVisitor
{
// set up the public vars
public $ipAddress;
public $userAgent;
public $timesVisited;
// Database Vars
protected $dbserv = 'localhost';
protected $dbuser = 'root';
protected $dbpass = NULL;
protected $dbbase = 'log';
function LogVisitor()
{
[/php]
Use and Enjoy…