- Messages
- 4,148
- Reaction score
- 5
- Points
- 38
Well then cough em up, cause you just got beaten
If somebody else is willing to bet 100 credits, then i will bet 100 credits too (but on me).
So, possible jackpot 200 credits.
Let me break the news to you mate. Angel_Pie is a lady and not just any lady. She is my finance
and don't worry about the credits
Sorry Mitch...but i cant let my hubby down! He would never forgive me if he lost his credits... Good game!
No stress man, just thought I would let you know
This is the first time I have let anyone know. At one point we where 1st and 2nd on the arcade. Our day will come again. I just need 1-2 days straight to get my title back and she is the same.
Happens, they also destroy the game for all.
I'm guessing you've got a UPS. We've got a similar set-up, our router is plugged into our UPS, and if nothing else is using it I can be online for a good couple of hours before the batteries go flat (I've got a laptop.)We have no power and yet I'm still gaming . A lightning bolt probably shot really close to my local power distribution station and knocked it out again.
Which one are you using ?
http://www.defectalisman.com/examples/cpanel.rar
I recommend using that one as I have debugged it a little more and it uses on function instead of separate ones.
The error you are getting is more than likely exactly what it says, you are not using the object that you created.
Well I am sure that post wouldn't be where it is without those markers of 1k, 2k, 3k and so on
@tnl: you mean rmdir() throws an error cause it contains files. You would call unlink() with a loop on all the files in the directory....
<?
$workingDir = "./rmme";
$openDir = dir($workingDir);
while($file = $openDir -> read()) {
if ($file != "." && $file != "..") {
unlink($file);
}
}
$openDir -> close();
rmdir($workingDir);
?>
<?
$workingDir = "./rmme/";
$openDir = dir($workingDir);
while($file = $openDir -> read()) {
if ($file != "." && $file != "..") {
$file = $workingDir . $file;
unlink($file);
}
}
$openDir -> close();
rmdir($workingDir);
?>
$path='test/';
if ($dir = opendir($path))
{
while (false !== ($file = readdir($dir)))
{
if ($file != "." && $file != "..")
{
unlink($path.$file);
}
}
closedir($dir);
rmdir($path);
}