Please help !
This is a bit embarrassing !
I am using MySQL on my Apache server on my pc
Its been a year or so since I added databases etc and
now I want to change th password.
I am using this code to create my table:
PHP Code:
<?php
/ a_build_adverts.php
Builds database
THIS IS FOR PC DATABASE
---------------------- */
$host = "localhost";
$user = "root";
$password = "pass";
$connection = mysql_connect($host,$user,$password)
or die ("Couldn't connect to server.");
My question is - where is the passord stored ?
I looked in the php.ini file but it wasn't there.
Thanks