View Single Post
Old 12-23-2008, 07:40 PM  
NickSunshine
Confirmed User
 
NickSunshine's Avatar
 
Join Date: Mar 2006
Posts: 1,196
Quote:
Originally Posted by eMonk View Post
that worked but it's only displaying 1 letter at a time.. i want all displayed randomly side-by-side. why doesn't the txt like my a href links?
this is my fault for not completely reading your first post.

for some reason i thought you only wanted one line...

PHP Code:
<?

$a=file('textfile.txt');
array_shuffle($a);
for each($a as $line){
   print("<a href='../models/" . $line . "'><img src='../models/" . $line . "/thumb.jpg' />" . ucwords($line) . "</a>");
}

?>
__________________

Last edited by NickSunshine; 12-23-2008 at 07:41 PM.. Reason: <? ?>
NickSunshine is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote