groups

name language licence
jQuery Loop Other Other
HTML refresh code HTML Other
create random number Other Other
AS3 Full Screen Command Other Other
PQP add code PHP Other
css clearfix Other Other
jQuery class to ui HTML Other
htaccess redirect data phones HTML Other

< 1 2 3 4 5 6 >



language: PHP
licence: Other

PQP add code

options: view full snippetsend to code collector
<?php

require_once('classes/PhpQuickProfiler.php');
//require_once('classes/MySqlDatabase.php');

class PQPExample {
	
	private $profiler;
	private $db = '';
	
	public function __construct() {
		$this->profiler = new PhpQuickProfiler(PhpQuickProfiler::getMicroTime());
	}
	
	public function init() {
	
(Continues...)