Man of Honour
I'll copy it into the sticky tomorrow.
Originally posted by Biffa
Anyone have a snippet of PHP that would check to see if the handle is in the text file?
<?php
// Where to get the list of handles from
$HandleList="/home/www/html/data/handles.lst";
$handle=$_GET["handle"];
if($handle=="") $handle="none";
$found=false;
$fp=@fopen($HandleList,"r");
if($fp)
{
while(!$found && !feof($fp))
$found=!strcasecmp($handle,trim(fgets($fp,256)));
fclose($fp);
}
if($found)
print "$handle is permitted.";
else
print "$handle is not permitted.";
?>
Originally posted by Augmented
Is there a function to overlay text (incidentally not for setistats) without having Freetype installed?
Lovely, that's what I'm after. Thanks.Originally posted by kaiowas
http://www.php.net/manual/en/function.imagestring.php
Originally posted by Valor
http://cgi.kaiowas.plus.com/divisions/sigsetup.php
umm, I'll get my coat....
Can you add Text Rotation pls, and try to avoid any non automatic user autherisation.
Valor.