Thanks for everyone's help.
After much debugging and simplifying (Thanks to Joe Stump aka Miester for his time) this is what we come up with ...
<?php
require ('abe_include.php');
$sql_addclient = "INSERT INTO client_login (client, username, password)
values
('$client', '$username', '$password')"
or die(mysql_error());
verify record added
$result = mysql_db_query ($connect_db, $sql_addclient, $connection);
if (!result) {
echo "<font face='Verdana' size='3' color='#FFCC00'>Cannot access database. Please hit the back button and try again before reporting this fault.</font>";
die(mysql_error());
} else {
echo "<font face='Verdana' size='2' color='#FFCC00'>$client record created. Choose from a link below to continue.</font>";
}
?>
Which doesnt generate any errors ... but doesnt insert anything either.
Suggestions? Thanks all...