0
<?php

mysql_connect("localhost", "root", "")
mysql_select_db("safedrive");

?>

I have this php file, and it wont go through.

John Conde
  • 217,595
  • 99
  • 455
  • 496
Shinji
  • 1,799
  • 2
  • 11
  • 13

1 Answers1

7

Missing semi-colon:

<?php

mysql_connect("localhost", "root", "") <-- HERE
mysql_select_db("safedrive");

?>
John Conde
  • 217,595
  • 99
  • 455
  • 496