


A complete example of using php+xml combined with Ajax to realize the like function, xmlajax_PHP tutorial
php+xml combined with Ajax to implement a complete example of the like function, xmlajax
The example in this article describes the method of php+xml combined with Ajax to implement the like function. Share it with everyone for your reference. The details are as follows:
Use xml, php and Ajax to implement the like function without linking to the database. Use php to modify the content of xml, and use Ajax to directly change the content of xml.
1. Prepare xml:
<?xml version="1.0"?> <goodtree> <goodnode> <id>0</id> <count>17</count> </goodnode> <goodnode> <id>1</id> <count>37</count> </goodnode> <goodnode> <id>2</id> <count>67</count> </goodnode> </goodtree>
The ID is only used to see the sorting, and has no actual calling effect.
2. Prepare HTML
<div id="goodcount"> <span>0</span><button onclick="goodplus(0);">good+1</button> <span>0</span><button onclick="goodplus(1);">good+1</button> <span>0</span><button onclick="goodplus(2);">good+1</button> <span>0</span><button onclick="goodplus(3);">good+1</button> </div>
3. JAVASCRIPT, including Ajax, also adds the function of judging cookies
var span = document.getElementsByTagName('span'); var num; var flag = 0; for(var i = 1; i < span.length + 1; i++){ senddata(i); } function goodplus(gindex){ flag = 1; num = parseInt(span.item(gindex).innerHTML); if(checkcookie(gindex) == true){ num = num + 1; senddata(gindex); }else{ alert("你已经点过赞咯!") } } function senddata(aindex){ var xmlhttp; var txt; if(window.XMLHttpRequest){ xmlhttp=new XMLHttpRequest(); }else{ xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function(){ if(xmlhttp.readyState == 4 && xmlhttp.status == 200){ if(flag == 0){ xmldoc = xmlhttp.responseXML; var count = xmldoc.getElementsByTagName('count'); var span2 = document.getElementsByTagName('span'); for(var j = 0; j < count.length; j++){ span2.item(j).innerHTML = count[j].childNodes[0].nodeValue; } }else if(flag == 1){ xmldoc2 = xmlhttp.responseText; var span3 = document.getElementsByTagName('span'); span3.item(aindex).innerHTML = xmldoc2; } } } if(flag == 0){ xmlhttp.open("GET","/ajax/foodmap/index.xml"); }else{ xmlhttp.open("GET","/ajax/foodmap/index.php?num=" + num + "&aindex=" + aindex,true); } xmlhttp.send(); } //判断是否已经存在了cookie function checkcookie(gindex){ var thiscookie = 'sdcity_foodmap_goodplus' + gindex; var mapcookie = getCookie(thiscookie) if (mapcookie!=null && mapcookie!=""){ return false; }else { setCookie(thiscookie,thiscookie,365); return true; } } //获取cookie function getCookie(c_name){ //获取cookie,参数是名称。 if (document.cookie.length > 0){ //当cookie不为空的时候就开始查找名称 c_start = document.cookie.indexOf(c_name + "="); if (c_start != -1){ //如果开始的位置不为-1就是找到了、找到了之后就要确定结束的位置 c_start = c_start + c_name.length + 1 ; //cookie的值存在名称和等号的后面,所以内容的开始位置应该是加上长度和1 c_end = document.cookie.indexOf(";" , c_start); if (c_end == -1) { c_end = document.cookie.length; } return unescape(document.cookie.substring(c_start , c_end)); //返回内容,解码。 } } return ""; } //设置cookie function setCookie(c_name,value,expiredays){ //存入名称,值,有效期。有效期到期事件是今天+有效天数。然后存储cookie, var exdate=new Date(); exdate.setDate( exdate.getDate() + expiredays ) document.cookie = c_name + "=" + escape(value) + ((expiredays==null) ? "" : "; expires=" + exdate.toGMTString()) }
4. Modify xml data through php. No php file is required when calling xml data at the beginning.
<?php $num = $_GET['num']; echo $_GET['num']; $aindex = $_GET['aindex']; $dom=new DOMDocument('1.0'); $dom->load('index.xml'); $goodnode=$dom->getElementsByTagName('goodnode'); $goodnode = $goodnode->item($aindex); $items = $goodnode->getElementsByTagName('count'); foreach($items as $a){ $a->nodeValue = $_GET['num']; } $dom->save('index.xml'); ?>
Done.
I hope this article will be helpful to everyone’s PHP programming design.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
