If you need to connect to a mysql database from php you can do it like this:
[code lang=”php”]
$DBH = ‘localhost’;
$DBU = ‘root’;
$DBPWD = ‘password’;
$DBN = ‘petstore’;
$conn = mysql_connect($DBH, $DBU, $DBPWD) or die (“Error: Could not connect to database.”);
mysql_select_db($dbname);
?>
[/code]
This allows you to make a connection to the mysql database and gets it ready for you to make queries and manipulate the data.
Content
Run Javascript – Chrome Extension Help
Run Javascript is a Chrome Extension that allows you to run custom Javascript each time you visit a website. It is particularly useful to web developers and people who like to tamper with websites they Read more…