View Single Post
Old 10-18-2009, 03:44 PM  
quantum-x
Confirmed User
 
quantum-x's Avatar
 
Join Date: Feb 2002
Location: ICQ: 251425 Fr/Au/Ca
Posts: 6,863
Quote:
Originally Posted by Jakez View Post
I know there's an easier way of doing this but I like to do stuff a weird/hard way rofl.
<?php
$arr="a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z";
$arr_ex=explode("/",$arr);
for($i=0;$i<count($arr_ex)*2;$i++)
{
if($arr[$i]=="/"){continue;}
print "$arr[$i]a<br>";
print "$arr[$i]b<br>";
print "$arr[$i]c<br>";
print "$arr[$i]d<br>";
print "$arr[$i]e<br>";
print "$arr[$i]f<br>";
print "$arr[$i]g<br>";
print "$arr[$i]h<br>";
print "$arr[$i]i<br>";
print "$arr[$i]j<br>";
print "$arr[$i]k<br>";
print "$arr[$i]l<br>";
print "$arr[$i]m<br>";
print "$arr[$i]n<br>";
print "$arr[$i]o<br>";
print "$arr[$i]p<br>";
print "$arr[$i]q<br>";
print "$arr[$i]r<br>";
print "$arr[$i]s<br>";
print "$arr[$i]t<br>";
print "$arr[$i]u<br>";
print "$arr[$i]v<br>";
print "$arr[$i]w<br>";
print "$arr[$i]x<br>";
print "$arr[$i]y<br>";
print "$arr[$i]z<br>";
}
?>
Let me go on record to say: Never, ever hire this dude to code anything.
Anything.
quantum-x is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote