Quote:
|
Originally Posted by roberth31
Hi, I was reading the "README" on how to install the shop script and it said:
5. Edit the autp.php file and set your mysql access details :
<?
mysql_pconnect("your_database_host_name","your_mys ql_user_name","your_mysql_password");
mysql_select_db("your_mysql_database_name");
?>
So i opend up auth.php in wordpad and it said:
<?
mysql_pconnect("localhost","root","");
mysql_select_db("igenericshop");
?>
What does this mean? Do i have to add This code to it:
<?
mysql_pconnect("your_database_host_name","your_mys ql_user_name","your_mysql_password");
mysql_select_db("your_mysql_database_name");
?>
Any ideas?
Robert
|
It should be login and password to connect to u're mysql database and
mysql_select_db will be whatever database u're using to put u're table into
Thanks