Hi again:
I've been able to solve the first part of the problem, ie extracting the values. However, I'm still struglling with the query part. My code so far looks like this
<?
// lets get the lenght of string first
$rcLength = strlen($rcCodes);
for ($i=0; $i< $rcLength; $i+=2)
{
$RCactual=substr($rcCodes,$i,2);
echo "<table bgcolor=orange><tr><td>$RCactual</td><td></td><tr></table>";
$getRC = mysql_query("SELECT * FROM equifaxrc WHERE RC_Number=$test");
}
?>
Problrm is, when I try to run a "while" to display I get an error message.
Any ideas?