-1

Error Line

Warning: mysql_query() expects parameter 1 to be string, object given in C:\wamp\www\index.php on line 70

Line 70

$result = mysql_query($con,"SELECT * FROM web_designnotes ORDER BY id DESC");
Draco
  • 13
  • 1
  • 6

1 Answers1

0

Try this

$result = mysqli_query($con,"SELECT * FROM web_designnotes ORDER BY id DESC");
Bradley Dale
  • 23
  • 1
  • 1
  • 7