I could find it but it would take all day, and I don't have time. It's somewhere in this bit of code. $stringstuff = '$_POST["fname"], $_POST["lname"], $_POST["email"], $_POST["pass"], $_POST["color"], $_POST["pages"], $_POST["descrip"], $_POST["logo"], $_POST["price"], $_POST["country"], $_POST["state"], $_POST["age"], $_POST["domainstat"], $_POST["domain"], $_POST["loginf"], $_POST["traffic"], $_POST["space"], $_POST["updated"], $_POST["code"]'; mysql_query("INSERT INTO webmembers (fname, lname, email, pass, color, pages, descrip, logo, price, country, state, age, domainstat, domain, loginf, traffic, space, updated, code) VALUES('$stringstuff')") or die(mysql_error()); PHP: Thanks
Replace the single quotes with double quotes, and the double quotes with single quotes. Then wrap your variables between curly brackets and single quotes. $stringstuff = "'{$_POST['fname']}', '{$_POST['lname']}', '{$_P..."; PHP: EDIT: Also, please include your error messages in the future.
That didn't fix it. Parse error: parse error, unexpected ',' in * on line 21 Affected Code: $stringstuff = "'{$_POST['fname']}', '{$_POST['lname']}', '{$_POST['email']}', '{$_POST['pass']}', '{$_POST['color']}', '{$_POST['pages']}', '{$_POST['descrip']}', '{$_POST['logo']}', '{$_POST['price']}', '{$_POST['country']}', '{$_POST['state']}', '{$_POST['age']}', '{$_POST['domainstat']}', '{$_POST['domain']}', '{$_POST['loginf']}", '{$_POST['traffic']}', '{$_POST['space']}', '{$_POST['updated']}', '{$_POST['code']}'"; mysql_query("INSERT INTO webmembers (fname, lname, email, pass, color, pages, descrip, logo, price, country, state, age, domainstat, domain, loginf, traffic, space, updated, code) VALUES($stringstuff)") or die(mysql_error()); PHP: Thanks EDIT: Hehe, I see my error, nevermind. It's a lot easier to find with it highlited. Now I have another error, Parse error: parse error, unexpected T_VARIABLE in * on line 23 $stringstuff = "'{$_POST['fname']}', '{$_POST['lname']}', '{$_POST['email']}', '{$_POST['pass']}', '{$_POST['color']}', '{$_POST['pages']}', '{$_POST['descrip']}', '{$_POST['logo']}', '{$_POST['price']}', '{$_POST['country']}', '{$_POST['state']}', '{$_POST['age']}', '{$_POST['domainstat']}', '{$_POST['domain']}', '{$_POST['loginf']}', '{$_POST['traffic']}', '{$_POST['space']}', '{$_POST['updated']}', '{$_POST['code']}'"; mysql_query("INSERT INTO webmembers (fname, lname, email, pass, color, pages, descrip, logo, price, country, state, age, domainstat, domain, loginf, traffic, space, updated, code) VALUES("$stringstuff")") or die(mysql_error()); PHP:
Check your code again... look at the code above, where the syntax is highlighted. It's easy... I'm not telling you.
I think I edited after you replied or something. Anyways, I have fixed the PHP errors (found another one). Now it's just a MySQL error, whoopee... Thanks!