ホームページ  >  記事  >  データベース  >  mysql-新浪sae, 微信公众平台的MySQL链接问题

mysql-新浪sae, 微信公众平台的MySQL链接问题

WBOY
WBOYオリジナル
2016-06-06 09:36:06866ブラウズ

mysqlsae

elseif($keyword=="绩效查询")
{
$msgType = "text";
$contentStr = "请输入您的学号";
$resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
}else if(is_numeric($keyword)){
if(strlen($keyword)==7)
{
//////
$contentStr = "进入 if(strlen($keyword)==7)";
$resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
////

<code>                $con = mysql_connect(SAE_MYSQL_HOST_M.':'.SAE_MYSQL_PORT,SAE_MYSQL_USER,SAE_MYSQL_PASS);                if(!$con)                {                     //////                    $contentStr = "进入 if(!$con)";                    $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);                    ////                    die('could not connect:'.mysql_error());                 }else{                    /////                    $contentStr = "进入else";                    $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);                    /////                    mysql_select_db("app_cjcx123",$con);                    $query = sprintf("SELECT * FROM table1 WHERE xm = 1450375");                    $result = mysql_query($query);                    while ($row = mysql_fetch_assoc($result)) {                        $contentStr=$row['xm'].$row['cj'];                        mysql_close($con);                    }                }            }else if(!is_numeric($keyword)){                $msgType = "text";                $contentStr = "学号错误,请重新输入";                $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);            }else{                $contentStr = "Input something...";                $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);            }        }        这是源码。加了几个输出,卡到        $con = mysql_connect(SAE_MYSQL_HOST_M.':'.SAE_MYSQL_PORT,SAE_MYSQL_USER,SAE_MYSQL_PASS);        这一句,后面的if  else 都没进去,求教,连接数据库的 几个参数需要定义全局变量还是怎么弄</code>
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。