PHP AJAX無重新整理返回天氣預報

2021-06-17 15:59:39 字數 989 閱讀 9259

用php來寫乙個天氣預報的模組

1. 2.

3. url中的數字」101010100「是城市**。所以可以先列出每個城市的城市**,然後php程式接收到了城市**,再去組裝url,在通過url來顯示該城市的實時天氣。

index.php

<?php

header("content-type:text/html;charset=utf-8");

?>

--請選擇城市--

北京上海

天津重慶

廣州

weatherforecast.php

<?php

header("content-type:text/html;charset=utf-8");

header("cache-control:no-cache");

if (isset($_post['cityid']))else

$weatherinfo_json=file_get_contents($url);

$weatherinfo=json_decode($weatherinfo_json,true);

$cityname=$weatherinfo['weatherinfo']['city'];

$citytemp=$weatherinfo['weatherinfo']['temp'];

$citywd=$weatherinfo['weatherinfo']['wd'];

$cityws=$weatherinfo['weatherinfo']['ws'];

$citytime=$weatherinfo['weatherinfo']['time'];

$citysd=$weatherinfo['weatherinfo']['sd'];

echo $weatherinfo="城市名字:$cityname,氣溫:$citytemp,風向:$citywd";

?>

php ajax實現無重新整理動態載入資料技術

result.php 當滾動到頁面底部時,前端ajax請求到result.php,該後台程式將根據請求的資料頁數 page,查詢資料表中對應的記錄,並將記錄集以json的格式輸出返回給前端處理。require once connect.php 連線資料庫 user array demo1 demo2...

PHP AJAX 返回XML資料

例子 利用ajax間接訪問資料庫,查出nation表中的資料,返回xml資料,並將nation表中的資料顯示在下拉列表框中 外層建乙個下拉列表框 1 select id sel 2select jqurey document ready function e 將 加入到下拉列表中的 sel html...

php ajax實時重新整理簡單例項

ajax自動重新整理好像是個很常見的問題,之前做乙個網頁聊天室程式也是卡在了這上面,經過了這段時間的學習,終於做出了乙個可以自動重新整理網頁的 框架,希望正在迷茫的親們不要像我一樣走了這麼doludtleq多彎路 廢話不多說 上 html部分 程式設計客棧 php部分 只是個測試實時重新整理的網頁 ...