Jump to content

[SOLVED] finding out localhost


jakebur01

Recommended Posts

is their any way to find out "localhost" of mysql to get the actual address?

 

I don't entirely understand your question but this may help:

 

$_SESSION['SERVER_NAME'] contains the name of the server the script is running on. So this could be 'localhost' or 'myDomain.com' or whatever.

$_SESSION['SERVER_NAME']

AAAACCCKKKKK!!! I just wasn't thinking...

 

What I meant was:

$_SERVER['SERVER_NAME'] 

 

So yeah you can do something like:

<?php
$test= $_SERVER['SERVER_NAME'];
if($test=="myDomain.com") {
  // Link to one SQL server here
} elseif($test=="localhost") {
  // Link to localhost SQL server
} else {
  // Link to some other SQL server...
}
?>

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.