Hey im not exactly PHP smart and for my AIM bot im releasing i got a script to add there bot name to a file on a friends server. i got it to add the file but id like to know how to dupe check just so i dont have like 50 of the same bots ya know? if it helps heres my post.php code
<?php
$filename = 'blist.html';
$fp = fopen($filename, "a");
$string = ("$bname");
$write = fputs($fp, $string);
fclose($fp);
?>
someone please help =] ive been searching for hours on how to do this and only found stuff for mysql =[