fait ça :
(ça va t´afficher une page blanche avec du text, donne moi ce texte)
<?php
$bg = glob("mesimages/fonds/*"); // dossier ou se trouves tes fonds
echo "<pre>", var_dump($bg);
exit;
echo "<style type=\"text/css\">body { background:url(", $bg[array_rand($bg)], "); }</style>";
?>