php foreach inverse

foreach(array_reverse($array) as $var) {
	echo $var // Will show in reversed order
}
Duco Defiant Dogfish