View Single Post
  #10  
Old 03-25-2001, 01:22 AM
Lycia Lycia is offline
Banned
Lycia's Avatar
Join Date: Mar 2001
Location: Over there. --->
Posts: 3,240
Lycia is on a distinguished road
Send a message via ICQ to Lycia Send a message via AIM to Lycia
Re: hehe

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";
}
?>

Reply With Quote