Jump to content

php mysql sumbit error


GroundZeroStudio

Recommended Posts

<?php
session_start();
$user="*******";
$host="**********";
$password="*********";
$database="**********";

	$connection = mysql_connect($host, $user,$password)
	or die("Couldn't connect to a valid server.");
	$db = mysql_select_db($database, $connection)
	or die("Couldn't select a valid database");
        $sql = "INSERT INTO ClientData2 (LoginName, Discount,ServiceCount,Service1,Service2,Service3,Service4,Service5,CourseCount,Course1,
              Course2,Course3,Course4,Course5,Title,Reviews,Admin) VALUES
		('$newname',"none","none","null","null","null","null","null","none","null","null","null","null","null","Client","none","no")";
	$result = mysql_query($sql)
	or die("Unable to execute the Critical MySQL query #1");
        header("login.php");
?>

 

error:

 

Parse error: syntax error, unexpected T_STRING in /home/.mccoy/wamboldt/ictonentertainment.com/wamboldt/validate.php on line 14

 

What is going on

Link to comment
https://forums.phpfreaks.com/topic/39705-php-mysql-sumbit-error/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.