PHP页面返回黑色,使用PHP和Google Docs API

时间:2013-11-19 15:34:03

标签: php google-api

我从这里发布关于这个脚本的帖子:http://www.farinspace.com/saving-form-data-to-google-spreadsheets/我已经成功地设置了它,但突然之间,它不再起作用,我不知道在哪里寻找错误因为页面返回黑色而没有错误。

这是我使用的代码,我已将zendgdata / library放在我托管的public_html文件夹中,并且我在托管上有几个停放的域名。

有没有人知道它可能是什么?

提前致谢...

<?php
// Zend library include path
set_include_path("$_SERVER[DOCUMENT_ROOT]/ZendGdata-1.12.0/library");

include_once("Google_Spreadsheet.php");

$u = "username@gmail.com";
$p = "password";

$ss = new Google_Spreadsheet($u,$p);
$ss->useSpreadsheet("filename");
$ss->useWorksheet("sheetname");

@$a= addslashes($_POST['a']);
@$b= addslashes($_POST['b']);
@$c= addslashes($_POST['c']);
@$f= addslashes($_POST['f']);
@$g= addslashes($_POST['g']);
@$h= addslashes($_POST['h']);
@$j= addslashes($_POST['j']);

$id = "z" . md5(microtime(true));

$row = array
(
    "a" => $a
    , "b" => $b
    , "c" => $c
        , "f" => $f
            , "g" => $g
                , "h" => $h
                    , "j" => $j
);

if ($ss->addRow($row));
else echo "";

$row = array
(
    "a" => $a
);
?>

1 个答案:

答案 0 :(得分:0)

我以某种方式将我的网址格式错误。这解决了这个问题。