
November 5th, 2012, 02:49 AM
|
|
Registered User
|
|
Join Date: Nov 2012
Posts: 8
Time spent in forums: 5 h 15 m 36 sec
Reputation Power: 0
|
|
|
MySQL and Apache
Hello, I am very new to MySQL so forgive me. Currently I am attempting to successfully upload this script to Apache:
Code:
<?php
mysql_connect("localhost", "root", "mypass") or die(mysql_error());
echo "Connected to MySQL<br />";
?>
So that when I view the .php page it displays "Connected to MySQL." Instead what it displays is nothing at all. I am running linux and I have all my .php files in /srv/http. I can see them in localhost but when I click on the appropriate file with the above code it doesn't work. Is there a problem with my syntax or am I doing something else wrong? I am following this tutorial:
http://www.tizag.com/mysqlTutorial/mysqlconnection.php
But it doesn't seem to have a very good explanation of how to upload the .php to my webserver.
Thanks
|