/ Published in: PHP
Here's a little trick I started using when working with XAMPP for localhost and keeping things in tune with the live configuration variables such as username and passwords to mysql (or whatever you're writing for).
The example below figures your working on http://website.com and that your local development server uses no password for the database.
The example below figures your working on http://website.com and that your local development server uses no password for the database.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
if ($_SERVER["REMOTE_ADDR"] == "127.0.0.1") { Â Â Â $l = mysql_connect ("localhost","root","") or die("Error connecting: <br /><br />".mysql_error()); Â Â Â Â $siteurl = "http://website.dev/"; // WITH TRAILING SLASH! Â } else { Â Â Â $l = mysql_connect ("localhost","live_database_user","live_password") or die("Error connecting: <br /><br />".mysql_error()); Â Â Â $siteurl = "http://website.com/"; // WITH TRAILING SLASH! }
URL: http://www.mediaextra.net/2010/workflow/tips-on-local-development/