Home Backend Development PHP Tutorial jquery+php查询数据库兑现json的例子

jquery+php查询数据库兑现json的例子

Jun 13, 2016 am 11:10 AM
jquery json nbsp php test

jquery+php查询数据库实现json的例子
哪位有这方面的例子?最近急需这方面的材料


------解决方案--------------------
参考
------解决方案--------------------
test.php
exit(json_encode(array('i1'=>'1','i2'=>'2',)));


jquery ajax请求
$.getJSON(
  "test.php",
  function(json){
    alert("JSON Data:   " + json.i1);
  }
);  

具体的详细的可以查看jquery手册
------解决方案--------------------
数据库查询就查看php手册吧
------解决方案--------------------
test.php
exit(json_encode(array('i1'=>'1','i2'=>'2',)));


jquery ajax请求
$.getJSON(
  "test.php",
  function(json){
  alert("JSON Data: " + json.i1);
  }
);  
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian

Huawei Watch GT 5 smartwatch gets update with new features Huawei Watch GT 5 smartwatch gets update with new features Oct 03, 2024 am 06:25 AM

Huawei Watch GT 5 smartwatch gets update with new features

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

How To Set Up Visual Studio Code (VS Code) for PHP Development

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

How do you parse and process HTML/XML in PHP?

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

PHP Program to Count Vowels in a String

New Xiaomi Mijia Graphene Oil Heater with HyperOS arrives New Xiaomi Mijia Graphene Oil Heater with HyperOS arrives Oct 02, 2024 pm 09:02 PM

New Xiaomi Mijia Graphene Oil Heater with HyperOS arrives

7 PHP Functions I Regret I Didn't Know Before 7 PHP Functions I Regret I Didn't Know Before Nov 13, 2024 am 09:42 AM

7 PHP Functions I Regret I Didn't Know Before

Top 10 PHP CMS Platforms For Developers in 2024 Top 10 PHP CMS Platforms For Developers in 2024 Dec 05, 2024 am 10:29 AM

Top 10 PHP CMS Platforms For Developers in 2024

See all articles