Quote:
Originally Posted by eMonk
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>");
}
?>