Tag

AJAX

0 views collected around this technical thread.

php中文网 Courses
php中文网 Courses
Dec 12, 2024 · Backend Development

How to Display Nearby Points of Interest Using PHP and Baidu Maps API

This tutorial explains step-by-step how to register a Baidu Maps developer account, set up a PHP script, create an HTML page with a map container, retrieve geographic coordinates via JavaScript, call the Baidu Maps API to fetch nearby points of interest, and render them on the page.

AJAXBaidu Maps APIGeolocation
0 likes · 6 min read
How to Display Nearby Points of Interest Using PHP and Baidu Maps API
php中文网 Courses
php中文网 Courses
Sep 14, 2024 · Frontend Development

Integrating PHP with Front-End Technologies: Bridging the Gap for Dynamic Web Applications

This article explains how PHP can be integrated with front‑end technologies such as server‑side rendering, client‑side rendering, AJAX, and APIs, outlines key concepts and tools, and provides a step‑by‑step tutorial for building a simple blog application using PHP and React.

AJAXAPIFrontend Development
0 likes · 15 min read
Integrating PHP with Front-End Technologies: Bridging the Gap for Dynamic Web Applications
php中文网 Courses
php中文网 Courses
Jun 28, 2024 · Backend Development

Implementing Product Purchase Quantity Limits in a PHP E‑Commerce Store

This article explains how to implement product purchase quantity limits in a PHP‑based online store, covering database schema changes, modifications to product detail, cart, and checkout pages, Ajax‑driven updates, inventory checks, and order management to prevent overselling and improve user experience.

AJAXBackendInventory
0 likes · 4 min read
Implementing Product Purchase Quantity Limits in a PHP E‑Commerce Store
php中文网 Courses
php中文网 Courses
Jun 26, 2024 · Backend Development

Implementing Purchase Quantity Limits in a PHP E‑Commerce Store

This article explains how to design the database, modify product detail, cart, and order pages, and use Ajax in PHP to enforce purchase quantity limits based on stock levels, ensuring accurate inventory management and improved user experience in online stores.

AJAXBackendDatabase
0 likes · 4 min read
Implementing Purchase Quantity Limits in a PHP E‑Commerce Store
php中文网 Courses
php中文网 Courses
Apr 15, 2024 · Backend Development

How to Display Nearby Points of Interest Using PHP and Baidu Maps API

This tutorial explains step‑by‑step how to register a Baidu Maps developer account, create a PHP script, build a simple HTML page, retrieve geographic coordinates via Ajax, call the Baidu Maps API to fetch surrounding POIs, and render them on the map for a web project.

AJAXBaidu MapsGeolocation
0 likes · 6 min read
How to Display Nearby Points of Interest Using PHP and Baidu Maps API
Sohu Tech Products
Sohu Tech Products
Mar 13, 2024 · Frontend Development

HTMX vs React: A Comparative Overview of Modern Front‑End Libraries

HTMX offers a lightweight, HTML‑attribute‑driven approach that adds AJAX, WebSocket and server‑sent event interactivity without JavaScript, making it ideal for simple pages, while React provides a full‑featured, component‑based JavaScript library with a steep learning curve, extensive ecosystem, and superior scalability for complex, state‑driven applications.

AJAXWeb Developmentcomparison
0 likes · 17 min read
HTMX vs React: A Comparative Overview of Modern Front‑End Libraries
php中文网 Courses
php中文网 Courses
Feb 7, 2024 · Backend Development

Implementing Purchase Quantity Limits in a PHP E‑Commerce Store

This article explains how to implement product purchase quantity limits in a PHP‑based online store by designing a stock field in the database, updating product detail, cart, and order pages, using Ajax for dynamic updates, and ensuring inventory consistency to improve user experience and operational efficiency.

AJAXBackendDatabase
0 likes · 4 min read
Implementing Purchase Quantity Limits in a PHP E‑Commerce Store
php中文网 Courses
php中文网 Courses
Jan 25, 2024 · Frontend Development

Understanding AJAX: Asynchronous JavaScript and XML with PHP Example

This guide explains AJAX as an asynchronous JavaScript and XML technique that enables seamless client‑server communication with PHP, providing step‑by‑step examples and key concepts for building dynamic, responsive web applications.

AJAXJavaScriptPHP
0 likes · 3 min read
Understanding AJAX: Asynchronous JavaScript and XML with PHP Example
php中文网 Courses
php中文网 Courses
Dec 21, 2023 · Backend Development

Implementing a Data Search Feature with PHP and Vue

This article demonstrates how to build a simple data search feature by creating a PHP backend API using PDO for database queries and a Vue.js frontend that sends Ajax requests, processes the JSON response, and displays matching student records in a list.

AJAXData SearchPDO
0 likes · 6 min read
Implementing a Data Search Feature with PHP and Vue
Sohu Tech Products
Sohu Tech Products
Sep 6, 2023 · Frontend Development

An Introduction to htmx: Using HTML Attributes for Dynamic Web Interactions

This article introduces htmx, a lightweight library that adds Ajax, CSS transitions, WebSockets, and server‑sent events to plain HTML through simple hx‑ attributes, enabling features like lazy loading, form validation, and view transitions without writing JavaScript, and works with any back‑end.

AJAXCSS TransitionsFront-end
0 likes · 18 min read
An Introduction to htmx: Using HTML Attributes for Dynamic Web Interactions
php中文网 Courses
php中文网 Courses
Aug 29, 2023 · Backend Development

Implementing Phone Verification Login with PHP

This article explains how to implement a phone‑verification login system using PHP, covering front‑end page design, AJAX‑based code sending, and server‑side validation with example code snippets for HTML, JavaScript, and PHP integration.

AJAXBackend DevelopmentPHP
0 likes · 6 min read
Implementing Phone Verification Login with PHP
php中文网 Courses
php中文网 Courses
Jul 13, 2023 · Backend Development

Building a Simple Shopping Cart with PHP and Vue.js

This tutorial demonstrates how to create a basic shopping cart system by setting up a MySQL database, implementing backend PHP scripts for CRUD operations, and integrating a Vue.js front‑end with Axios to manage products and cart interactions in a full‑stack web application.

AJAXMySQLVue.js
0 likes · 9 min read
Building a Simple Shopping Cart with PHP and Vue.js
37 Interactive Technology Team
37 Interactive Technology Team
Oct 10, 2022 · Frontend Development

AOP Techniques for Ajax and Jsonp in Front-End Development

The article explains how to use Aspect‑Oriented Programming to globally intercept and rewrite Ajax and JSONP requests—both native and framework based—by extending Function.prototype, overriding DOM methods, and employing ajax‑hook and Axios interceptors, culminating in a runnable demo that redirects traffic from a‑domain to b‑domain.

AJAXAOPAxios
0 likes · 19 min read
AOP Techniques for Ajax and Jsonp in Front-End Development
Python Programming Learning Circle
Python Programming Learning Circle
Sep 23, 2022 · Backend Development

Understanding Static and Dynamic Web Pages for Effective Web Crawling

This article explains what web crawlers are, compares static and dynamic web pages, outlines their characteristics, advantages, and challenges, and provides practical tips for extracting data from both types of pages using tools like browser developer consoles and packet‑capture utilities.

AJAXData ExtractionHTTP
0 likes · 5 min read
Understanding Static and Dynamic Web Pages for Effective Web Crawling
Laravel Tech Community
Laravel Tech Community
Aug 31, 2022 · Backend Development

PHP Functions for Detecting HTTP Request Types (GET, POST, PUT, DELETE, PATCH, AJAX)

This article provides PHP code snippets to determine the HTTP request method—such as GET, POST, PUT, DELETE, PATCH—and to check for AJAX requests, offering a quick reference for developers implementing RESTful APIs in a backend environment.

AJAXBackendHTTP
0 likes · 2 min read
PHP Functions for Detecting HTTP Request Types (GET, POST, PUT, DELETE, PATCH, AJAX)
HomeTech
HomeTech
Aug 16, 2022 · Information Security

Understanding Chrome 94 Private Network Access Restrictions and CORS Errors

The article explains why browsers like Chrome 94 block cross‑origin requests from public contexts to private‑network resources, illustrates the issue with a reproducible example, analyzes the underlying policy changes, and provides practical solutions and configuration steps to mitigate the problem.

AJAXCORSChrome
0 likes · 6 min read
Understanding Chrome 94 Private Network Access Restrictions and CORS Errors
php中文网 Courses
php中文网 Courses
Mar 2, 2022 · Frontend Development

Implementing Real-Time Mobile Signature Capture with jSignature and PHP

This tutorial explains how to integrate the jSignature library with jQuery on the front end and PHP on the back end to provide a real‑time mobile signature feature, covering library download, HTML markup, JavaScript initialization, reset, AJAX submission, and server‑side base64 image handling.

AJAXJavaScriptPHP
0 likes · 5 min read
Implementing Real-Time Mobile Signature Capture with jSignature and PHP
php中文网 Courses
php中文网 Courses
Oct 18, 2021 · Frontend Development

AJAX Technology – Asynchronous Data Retrieval (Course Overview)

This course introduces AJAX (Asynchronous JavaScript and XML), explaining how it enables browsers to fetch data without page refresh by sending asynchronous requests, and clarifies that AJAX is a technique combining existing web standards rather than a new programming language.

AJAXCourseJavaScript
0 likes · 1 min read
AJAX Technology – Asynchronous Data Retrieval (Course Overview)
Tencent Cloud Developer
Tencent Cloud Developer
Oct 9, 2021 · Frontend Development

Cross-Origin Issues and Solutions in Web Development

The article explains cross‑origin restrictions in web development, distinguishes broad and narrow cross‑origin, outlines common scenarios, and compares solutions such as JSONP, CORS, Flash, server proxies, and front‑end techniques like document.domain, hash, window.name, and postMessage, highlighting each method’s pros and cons.

AJAXCORSCross-Origin
0 likes · 20 min read
Cross-Origin Issues and Solutions in Web Development