So, I've just started using Php/apache/mysql on my linux box. I use php in my pages and I can access mysql from the command line with user=root and pwd=rootpwd. However, when I run this code:
<?php
echo "Starting...<br>";
$connect = mysql_connect('localhost','root','rootpwd');
if (!$connect) {...