Ok, now I just found out about the function similar_text(), and its a nice and handy little function. Now i can do this displaying 100% and stuff, but its all not in order. Now, you see where it says $better[$i], that was my attempt of putting into a multi-dimensional array, DID NOT WORK lol... I am not great with this... How might I arrange these to show up in percentage found (which is the $p, and its not a percent, its a actual integer.) Thanks for any help.
$better = array();
$array = array("google", "metallica", "shilla", "hostultra", "phpbuilder", "dillfrog", "php", "nodeka");
for($i=0;$i<sizeof($array);$i++) {
$percent = similar_text($array[$i], "metallica", &$p);
$p = intval($p);
echo "$array[$i] returned $p%<Br>";
$better[$i] = $array[$i];
$better[$i][0] = $p;
}