调用2个不同的数据库

时间:2011-10-15 03:04:24

标签: php sql

我正在尝试将PAYPAL IPN与2个不同的站点一起工作,我无法让PHP脚本知道要使用哪个数据库。这是我的剧本。

// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-validate';
foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}
// post back to PayPal system to validate
$header = "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";

// If testing on Sandbox use:
//$fp = fsockopen ('ssl://www.sandbox.paypal.com', 443, $errno, $errstr, 30);

$fp = fsockopen ('ssl://www.paypal.com', 443, $errno, $errstr, 30);


// assign posted variables to local variables
$custom = $_POST['item_name'];

//Config file for 1st database
if($custom=="1"){
require_once("../config.php");

//Script to execute

}

 //Config file for 2nd database (different site)
if($custom=="2"){
require_once("../config.php");

//Script to execute
}

2 个答案:

答案 0 :(得分:3)

你的代码做了很多假设而且不是很防守。它假设表单是发布,它已成功填充,$_POST['item_name']将只包含字符串'1'或'2',并且您的脚本在一个路径中运行文件夹深入到包含config.php的目录...并且无论条件如何,都将加载相同的config.php并奇迹般地知道它需要做什么。

更有意义的是这样的事情:

try
{
    if(isset($_POST['site_name']))
    {
        require_once('../configs/' . $_POST['site_name'] . '/config.php');
        if(!isset($some_var_declared_inside_config_file))
        {
            throw new Exception('Config not loaded');
        }
    }
    else
    {
        throw new Exception('Site name not provided');
    }
}
catch(Exception $e)
{
    echo $e->getMessage();
}

然后你可以像这样设置你的配置:

/www/paypal.php
/configs/sitea/config.php
/configs/siteb/config.php
/configs/sitec/config.php

答案 1 :(得分:0)

我找到了一个很棒的剧本。它会根据电子邮件自动将paypal响应发送到正确的站点。

http://www.scriptomart.com/view-item/15-Paypal-IPN-Multiple-Email-Accounts.html是剧本,但我买的不是免费的,所以你可能需要寻找那个。我找不到确切的链接。