ok, I can combine the lists..
$list1 .= '/n';
$list2 .= '/n'; // makes sure the last line is included
$a1 = array();
$a2 = array();
$r = array();
foreach ($as1 as $a1)
{
$as1 = explode('\n', $list1)
}
foreach ($as2 as $a2)
{
$as2 = explode('\n', $list2)
}
foreach ($rs as $r)
{
$rs = $a1 . ':' . $a1;
}
$passval = explode('\n',$r);
I tried to return $passval as a blob, and MySQLdoesn't like that at all.. the script completely compiles, but reutrns an error when I pass the query to the database.
I know it is an error with the blob, as the rest of the script is cut and paste and edited from a similar scriupt that did not use blobs.
How can I pass a blob function to SQL? I know FrontBase has the fbsql_create_blob() function. does MySQL have a similar function? I looed at the manual and couldn't find anything.