*yaaaawn*
[VGMUSIC]
* NES completed (~4000 music files divided on ~430 games)
* SNES starting within the hour, just have to get to work.
[VGMAPS]
* NES completed (~2470 maps divided on 191 games)
* SNES start within the hour just like VGMUSIC
QUOTE(ninjagaidenfreak @ Jan 19 2010, 03:49 AM)

Thanks for the quick post

Its been a while since I've touched php but I can do it, I'll poke around a bit and see what I can come up with.
also I love looking at hack job code and trying to figure out what is going on and the though pattern

.............. sample cut
$test = substr($test,strpos(strtolower($test),"\"center\"")+9);
$td7 = substr($test,0,strpos(strtolower($test),"</td"));
$f1 = strip_tags($td1);
$f2 = strip_tags($td2);
// link in td1?
if (stristr($td1,"<a ") && !stristr($td1,"mailto")) { $link = substr($td1,strpos(strtolower($td1),"href=\"")+6); $link = substr($link,0,strpos($link,"\"")); }
// link in td2?
if (stristr($td2,"<a ") && !stristr($td1,"mailto")) { $link = substr($td2,strpos(strtolower($td2),"href=\"")+6); $link = substr($link,0,strpos($link,"\"")); }
if ($f1 == $f2) { $fname = "$f1.$td5"; } else { $fname = "$f1 - $f2.$td5"; }
$fname = str_replace("\"","",$fname);
$fname = str_replace("'","",$fname);
.............. sample cut
yea.. how's that for a hack job code