New Ribbon
用Canva設計超快超質感(第2版):商業設計、簡報、影片、網頁、電子書與AI應用最速技 AI繪圖工具 × AI視覺設計平台,從圖像生成到專業設計! 最強職場助攻!ChatGPT + AI 高效工作術 短影音制霸:打造TikTok、YT Shorts、IG Reels成功方程式與AI高效創作力 Canva+AI創意設計與品牌應用250招:從商業技巧、社群祕技到AI圖文影音特效 快快樂樂學威力導演2024.影音剪輯與AI精彩創作 Power Automate自動化超效率工作術 Midjourney AI圖像魔導書:搭配ChatGPT魔法加倍 超人氣FB+IG+LINE社群經營與行銷力(第二版) 翻倍效率工作術:不會就太可惜的 Excel × ChatGPT 自動化應用 AppInventor2零基礎入門班中文版(第六版) Python零基礎入門班(第四版) C語言學習聖經 用Canva設計超快超質感:平面、網頁、電子書、簡報、影片製作與AI繪圖最速技 PHP8/MySQL網頁程式設計自學聖經 翻倍效率工作術 - 不會就太可惜的Power BI大數據視覺圖表設計與分析(第三版) 社群經營一定要會的影音剪輯與動畫製作術 Notion高效管理250招:筆記×資料庫×團隊協作,數位生活與工作最佳幫手 Office 2021高效實用範例必修16課(附500分鐘影音教學/範例檔) Excel自學聖經(第二版):從完整入門到職場活用的技巧與實例大全

 

  Dreamweaver SC6XPHP,第十二章問題

黃綉基

黃綉基
更新時間:2014/1/2 下午 10:04:46

 

請問老師
   來去台北住一晚-泡湯篇,12.3.6插入單的景點的Goojle Map,使用擴充程式<eDSnippets.mxp>,其中包括了Google Map V3(單一景點)程式碼片段。
   但是,我在附書光碟中按裝的<eDSnippets.mxp>這個擴充程式,選取/片段面板的織夢線上好用程式碼,卻只出現Google Map V3,無Google Map V3(單一景點),這是什麼原因呢?應如何處理?

Pan

Pan
更新時間:2014/1/5 下午 01:46:58

 

真的,只能從範例完成檔copy出來。


init.php…
目前資料庫沒有任何資料,請進行線上更新!

線上更新

按了線上更新沒有用,,出現第43行有錯誤的訊息,刪除資料庫的資料也出現undefined。

Pan

Pan
更新時間:2014/1/5 下午 01:50:19

 

是否哪裡沒改到?
我用Appserv,但其他範例大部分沒太大問題,只是路徑要改而已。

Pan

Pan
更新時間:2014/1/5 下午 01:51:18

 

<?php require_once('Connections/connSQL.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }

  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}

mysql_select_db($database_connSQL, $connSQL);
$query_RecHotel = "SELECT * FROM hoteldata";
$RecHotel = mysql_query($query_RecHotel, $connSQL) or die(mysql_error());
$row_RecHotel = mysql_fetch_assoc($RecHotel);
$totalRows_RecHotel = mysql_num_rows($RecHotel);

//get_contents($url) 取得遠端網頁內容函數
function get_contents($url){
$url = str_replace(" ", "%20", $url);
$ch = curl_init();
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt ($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$output = curl_exec($ch);
curl_close($ch);

return $output;
}

$data=get_contents('http://data.taipei.gov.tw/opendata/apply/json/RjQzRThDNjUtMzU3OS00MTU5LUEwOUEtMUI2NzFDOTE5NDcz');
$result = json_decode($data);

foreach($result as $key => $value) {    
if($value) {
        mysql_query("INSERT INTO taipeihotel.hoteldata (name ,certification_category ,tel ,display_addr ,poi_addr ,traffic_info ,X ,Y)VALUES ('$value->name' , '$value->certification_category', '$value->tel', '$value->display_addr', '$value->poi_addr', '$value->traffic_info', '$value->X', '$value->Y');");
    }
}

header("Location:index.php");

mysql_free_result($RecHotel);
?>




 

 

Re:Dreamweaver SC6XPHP,第十二章問題

請輸入姓名。

已超出字元數目的最大值。


請輸入電子郵件。

格式無效。


請輸入內容。