I have already created a MySQL Database in the form $login_clients, where $login is a php variable depending on the users login. I am attempting to insert into this database, but have not been able to call it using the variable. Any help is greatly appreciated! Here is my code:
$login = clean($_POST['login']);
require_once('user-config.php');
//Connect to mysql server
$link2 = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);
if(!$link2) {
die('Failed to connect to server: ' . mysql_error());
}
//Select database
$db = mysql_select_db(DB_DATABASE);
if(!$db) {
die("Unable to select database");
}
//Create INSERT query
$qry2 = "INSERT INTO `{$login}_clients` (AgentClients) VALUES('$login')";
$result = @mysql_query($qry2);
if($result2) {
header("location: client-register-success.php");
exit();
}else {
die("Query failed");
}

mysql_error()to get the exact error message. Also see php.net/manual/en/security.database.sql-injection.php – Pekka 웃 Nov 1 '12 at 7:52