<?php
include('../chord/chord.inc.php');
$c = new chord(array('x','x',0,0,0,8));
$c->setShowZeros(false);
$c->setMarginRight(20);
$c->setBarreChord(7,3,6);
$c->setStartingFret(5);
//PHP Chord will use built in 1 PHP font
//You can specify another font
//$c->setFontStartingFret('arial.ttf');
//$c->setFontStartingFretSize(9);
$c->draw();
?>