View Single Post
  #1  
Old 10-29-2002, 11:33 AM
magicbud3344 magicbud3344 is offline
Banned
Join Date: Mar 2002
Location: mEEP
Posts: 0
magicbud3344 is on a distinguished road
Send a message via AIM to magicbud3344
Avatar Scriptorz!

hey, i need some help here
i understand this is a NPC scripting fourm but mayeb you guys know a little PHP and can help me ?
ok i have this scrip here.....
<?php
header("content-type: image/gif");
srand((double)microtime()*10000000);
$i=1;
$handle=opendir("sigs");
while ($file = readdir($handle)) {
if ($file != "." && $file != "..") {
$dirlist[$i] = $file;
$i++;
}
}
closedir($handle);
$randomtopic = rand(1,sizeof($dirlist));
include("sigs/".$dirlist[$randomtopic]);
?>

ok now the question is where do i insert the hosted file names at?
someone please helps me i have no idea what i am doing :P
Reply With Quote