Quote:
Originally posted by nO1
What do you want ? *wink*
|
Nothing. :-) Make your images, put them where it says, and then upload it to a mySQL supported server, and then just link the PHP script. Oh, the images should be in the same directory as your script.
Enjoy!
NPC Code:
<?
srand((double)microtime()*10000000);
$randomtopic = rand(0,10);
if ($randomtopic == "0") {
include "lycsig0.gif";
}
elseif ($randomtopic == "1") {
include "lycsig1.gif";
}
elseif ($randomtopic == "2") {
include "lycsig2.gif";
}
elseif ($randomtopic == "3") {
include "lycsig3.gif";
}
elseif ($randomtopic == "4") {
include "lycsig4.gif";
}
elseif ($randomtopic == "5") {
include "lycsig5.gif";
}
elseif ($randomtopic == "6") {
include "lycsig6.gif";
}
elseif ($randomtopic == "7") {
include "lycsig7.gif";
}
elseif ($randomtopic == "8") {
include "lycsig8.gif";
}
elseif ($randomtopic == "9") {
include "lycsig9.gif";
}
elseif ($randomtopic == "10") {
include "lycsig10.gif";
} else {
echo "Error";
}
?>