The Easiest Way to Save and Share Code Snippets on the web

Themes

php | by: danosphere

last edit: Mar, 24th 2009 | jump to bottom

<?php
 
	//This is just a test comment
	//to see what styles look like.
 
	$output = "";
 
	function testStyle() {
		global $output;
 
		$output = "Oh the colors!";
		echo $output;
	}
 
	testStyle();
?>
254 views