Difference between revisions of "PHP Error Messages"

From PustakaPedia
Jump to: navigation, search
(Created page with "''': syntax error, unexpected '...' (T_VARIABLE) in''' <br/> Please check the commas, semicolons from the previous lines which may not be present<br/><br/> ''': mysqli_quer...")
 
Line 3: Line 3:
  
 
''':  mysqli_query() expects parameter 1 to be mysqli, null given in''' <br/>
 
''':  mysqli_query() expects parameter 1 to be mysqli, null given in''' <br/>
Please check on the MySQLi connection, whether the variable '$con' has the correct spelling or not
+
Please check on the MySQLi connection, whether the variable '$con' has the correct spelling or not<br/><br/>
 +
 
 +
''':  Undefined variable: ... in .... on line ...''' <br/>
 +
Please check on the variable declared on the line indicated, whether it was undefined earlier or there maybe duplication on the usage of the variable

Revision as of 09:37, 18 February 2019

: syntax error, unexpected '...' (T_VARIABLE) in
Please check the commas, semicolons from the previous lines which may not be present

: mysqli_query() expects parameter 1 to be mysqli, null given in
Please check on the MySQLi connection, whether the variable '$con' has the correct spelling or not

: Undefined variable: ... in .... on line ...
Please check on the variable declared on the line indicated, whether it was undefined earlier or there maybe duplication on the usage of the variable