All pastes #625569 Raw Edit

Someone

public text v1 · immutable
#625569 ·published 2007-07-19 00:55 UTC
rendered paste body
<pre>
<?
$ini_array = parse_ini_file("test.ini", TRUE);
$tagparse = explode(',', $ini_array[$_GET['id']]['tags']);
?>
<div>
<div>Name: <?=$ini_array[$_GET['id']]['name']?></div>
<div>Description: <?=$ini_array[$_GET['id']]['description']?></div>
<div>Location: <a href='<?=$ini_array[$_GET['id']]['location']?>'><?=$ini_array[$_GET['id']]['location']?></a></div>
<div>Tags: <?
	$num = count($tagparse); 
	for($i = 0; $i < $num; $i++) 
	{
	echo $tagparse[$i]; 
	echo ','; 
	}
           ?>
</div>
</div>
</div>
</pre>