[ create a new paste ] login | about

Link: http://codepad.org/vUHpJZMw    [ raw code | output | fork ]

PHP, pasted on Mar 23:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

$items = array(
	234 => 55.00,
	456 => 120.25,
	789 => 20.00
	);

print "You Bought:<br />";

foreach( $items as $id => $cost )
{
	print "{$id}: {$cost}<br />";
}


Output:
1
You Bought:<br />234: 55<br />456: 120.25<br />789: 20<br />


Create a new paste based on this one


Comments: