View file retrivewap/randimg.php

File size: 269B
<?php
echo"
<img src =\"logo/";
?>
<?php
$file = "randimg.txt";
srand((double) microtime() * 1000000);
$quotes = file($file);
echo $quotes[rand(0, sizeof($quotes)-1)];
$see = $quotes[rand(0, sizeof($quotes)-2)];
?>
<?php
echo "
\" alt=\"$see\" />
";
?>