I am trying to insert 10,000+ fields into my database? Is there a limit?
$sql = 'INSERT INTO `_'.$test.'` (`user`, `pass`) VALUES ' . preg_replace($test, $replace, $final_check) . ';';
mysql_query($sql) or die(mysql_error());
Every time I try to insert the data, it fails.