
August 21st, 2004, 03:44 PM
|
|
Registered User
|
|
Join Date: Aug 2004
Posts: 2
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
Place Random text over image Help
Hi,
I want to place random text over an image. I have the random text script set up. I want to be able to make it a forum signature also, by the way.
Here is the random text script:
PHP Code:
<? srand((double)microtime()*1000000); $arry_txt=preg_split("/--NEXT--/",join('',file("titles.txt"))); echo$arry_txt[rand(0,sizeof($arry_txt)-1)]; ?>
Thanks!
|