View Single Post
02-05-2007, 06:45 PM
#13
Salathe is offline Salathe
Salathe's Avatar
Status: Community Archaeologist
Join date: Jul 2004
Location: Scotland
Expertise: Software Development
Software: vim, PHP
 
Posts: 3,820
iTrader: 25 / 100%
 

Salathe will become famous soon enough

Send a message via MSN to Salathe

  Old

If I'm not mistaken (chances are that I am...) he wants something like:
PHP Code:
<?php

// Script running on www.myclientsite.com

// Set up db connection to remote server
include('http://www.remoteserver.com/db_conn.php');

// Now we can use the $db object
$db->query(...);
If you're trying to implement something like that, there's no way you can hide the connection details.