<html>
<head>
<style>
<?php
#construct the backs Array
$backs=array("{{url1}}","{{url2}}","{{url3}}","{{url4}}","{{url5}}","{{url6}}","{{url7}}","{{url8}}","{{url9}}","{{url10}}","{{url11}}","{{url12}}","{{url13}}","{{url14}}","{{url15}}");
#constuct the random file selector
$n=count($backs);
$num=rand(0, ($n-1));
$back=$backs[$num];
#send the back to the browser
print "body {
background-image: url($back);
}";
?>
</style>
</head>
<body>
</body>
</html>