Jump to content

connectiing php page to mysql database


ryne

Recommended Posts

hello everyone hope everyone is having a nice day!!!!!!!!!

I am building a webpage where students can sign up, I used php page to be the front end and mysql database to be the backend....
The problem is that I have to connect the php page to the mysql database so that we it will be stored on the backend...
<?php
$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = 'password';

$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');

$dbname = 'petstore';
mysql_select_db($dbname);
?>

I used the above codes to connect and saved that as test.php but whenever I try to browse that file on a browser it give this output:
Parse error: parse error, unexpected T_VARIABLE in C:\Program Files\Apache Group\Apache2\htdocs\connecting.php on line 4

can anyone help me with this one.........thanks in advance!!!!!!!!!!!!!
Link to comment
https://forums.phpfreaks.com/topic/10315-connectiing-php-page-to-mysql-database/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.