将项目的值发送到paypal cart

时间:2012-03-12 11:33:14

标签: php sql paypal

我与Paypals网站付款标准相关联。我想在异地使用他们的购物车。如何将客户选择的产品的值传递给paypals购物车?我正在使用php和sql并设置了我的网站,以便当客户点击特定产品时,它将从数据库中检索。

然后,当他们点击“添加到购物车”时,我希望它将该产品的值传递给paypals购物车。

以下是我用于从数据库中检索产品的代码(这是一个园艺网站,所以你知道):

/ is there a rose to view?
// it is using $_GET to access the parameter sent via URL
if (isset($_GET['rose_id'])) {

$rose_id = $_GET['rose_id'];
//prepare the statement
$stmt = $conn2->prepare("SELECT * FROM rosename 
    LEFT JOIN rosevariety ON (rosename.variety_name = rosevariety.variety_name) WHERE rose_id = ?");

//bind the parameters
$stmt->bind_param("i", $rose_id);

//$sql = mysql_query($query, $conn);
$stmt->execute();

//was there a good response?
if ($stmt) {
$result = $stmt->get_result();
$rose = $result->fetch_assoc();

//echo out rose information
    echo "<h1>".$rose['latin_name']."</h1>";
    echo "<h2>".$rose['common_name']."</h2>";

0 个答案:

没有答案