<?php
mysql_connect("localhost", "root", "")
mysql_select_db("safedrive");
?>
I have this php file, and it wont go through.
<?php
mysql_connect("localhost", "root", "")
mysql_select_db("safedrive");
?>
I have this php file, and it wont go through.
Missing semi-colon:
<?php
mysql_connect("localhost", "root", "") <-- HERE
mysql_select_db("safedrive");
?>