Tagged articles
20 articles
Page 1 of 1
Radish, Keep Going!
Radish, Keep Going!
Oct 2, 2025 · Frontend Development

A Snake Game in the URL Bar: What It Shows About Modern Web Security

This article explores how a quirky snake game runs inside a browser’s address bar, the technical tricks behind it, and how recent security and API changes in modern browsers have turned such creative hacks into fragile experiments, highlighting the tension between innovation and safety.

Browser SecurityJavaScriptURL encoding
0 likes · 11 min read
A Snake Game in the URL Bar: What It Shows About Modern Web Security
php Courses
php Courses
Aug 25, 2025 · Backend Development

Master URL Encoding in PHP: How to Use urlencode and rawurlencode

This article explains why URL encoding is essential for transmitting data with special or non‑ASCII characters, demonstrates how to use PHP’s urlencode (and rawurlencode) functions with example code for both English and Chinese strings, and highlights practical considerations such as space handling.

PHPURL encodingrawurlencode
0 likes · 4 min read
Master URL Encoding in PHP: How to Use urlencode and rawurlencode
php Courses
php Courses
May 16, 2025 · Backend Development

Using PHP urlencode for URL Encoding of Special and Non-ASCII Characters

URL encoding ensures safe transmission of special and non‑ASCII characters in web requests, and PHP's built‑in urlencode function—illustrated with both English and Chinese examples—demonstrates how to encode strings, handle spaces, and use rawurlencode when a %20 representation is required.

PHPURL encodingurlencode
0 likes · 3 min read
Using PHP urlencode for URL Encoding of Special and Non-ASCII Characters
php Courses
php Courses
Feb 11, 2025 · Backend Development

Using PHP urlencode() and urldecode() Functions for URL Encoding and Decoding

This article explains how PHP's urlencode() and urldecode() functions work, shows their syntax and practical code examples, compares them with rawurlencode()/rawurldecode(), and discusses when to use each function to correctly handle special characters in URLs during web development.

PHPURL encodingurldecode
0 likes · 5 min read
Using PHP urlencode() and urldecode() Functions for URL Encoding and Decoding
php Courses
php Courses
Nov 18, 2024 · Backend Development

Using PHP's urlencode Function for URL Encoding

This article explains how PHP's urlencode function encodes special and non‑ASCII characters in URLs, provides example code for English and Chinese strings, discusses practical usage in GET requests, and notes the difference between urlencode and rawurlencode for space handling.

PHPURL encodingWeb Development
0 likes · 3 min read
Using PHP's urlencode Function for URL Encoding
php Courses
php Courses
Oct 16, 2024 · Backend Development

Using PHP's urlencode Function to Encode URLs

This article explains the importance of URL encoding for transmitting data safely on the internet, demonstrates how to use PHP's built‑in urlencode function with examples for both ASCII and non‑ASCII strings, and highlights considerations such as space handling and the alternative rawurlencode function.

Backend DevelopmentData TransmissionPHP
0 likes · 4 min read
Using PHP's urlencode Function to Encode URLs
php Courses
php Courses
Aug 27, 2024 · Backend Development

Using PHP urlencode to Encode URLs and Non-ASCII Characters

This article explains how PHP's urlencode function encodes special and non‑ASCII characters in URLs, provides example code for both English and Chinese strings, and discusses practical usage considerations such as space handling and when to use rawurlencode.

URL encodingWeb Developmenturlencode
0 likes · 4 min read
Using PHP urlencode to Encode URLs and Non-ASCII Characters
php Courses
php Courses
Jul 3, 2024 · Backend Development

Using PHP urlencode to Encode Special and Non-ASCII Characters in URLs

This article explains how PHP's urlencode function converts special and non‑ASCII characters into URL‑safe representations, provides example code for English and Chinese strings, and discusses practical usage, space handling, and the alternative rawurlencode function for precise encoding.

PHPURL encodingurlencode
0 likes · 5 min read
Using PHP urlencode to Encode Special and Non-ASCII Characters in URLs
php Courses
php Courses
Apr 18, 2024 · Backend Development

Using PHP's urlencode Function for URL Encoding

This article explains how to use PHP's built-in urlencode function to safely encode URLs containing special or non‑ASCII characters, demonstrates encoding of both English and Chinese strings with code examples, discusses practical usage in GET requests, and notes the difference between urlencode and rawurlencode for space handling.

Backend DevelopmentPHPURL encoding
0 likes · 4 min read
Using PHP's urlencode Function for URL Encoding
php Courses
php Courses
Dec 26, 2023 · Backend Development

Using PHP's urlencode Function for URL Encoding

URL encoding is essential for transmitting data safely on the internet, and this article explains PHP's built‑in urlencode function, demonstrates encoding of both ASCII and non‑ASCII strings with example code, and discusses handling spaces and the alternative rawurlencode function.

BackendPHPURL encoding
0 likes · 4 min read
Using PHP's urlencode Function for URL Encoding
Python Crawling & Data Mining
Python Crawling & Data Mining
Oct 5, 2022 · Backend Development

How to Decode URL‑Encoded Strings in Python Web Scraping

An in‑depth guide shows how to decode URL‑encoded strings encountered during Python web scraping, explains the difference between two encoding formats, and provides ready‑to‑run urllib code that prints the original Chinese characters, helping developers troubleshoot similar crawling issues.

DecodeURL encodingWeb Scraping
0 likes · 4 min read
How to Decode URL‑Encoded Strings in Python Web Scraping
Laravel Tech Community
Laravel Tech Community
Aug 2, 2020 · Backend Development

PHP http_build_query Function: Usage, Parameters, and Examples

This article explains the PHP http_build_query function, detailing its purpose of generating URL‑encoded query strings from arrays or objects, describing each parameter (query_data, numeric_prefix, arg_separator, enc_type), the return value, and providing multiple code examples illustrating typical usage and output.

BackendPHPURL encoding
0 likes · 3 min read
PHP http_build_query Function: Usage, Parameters, and Examples
360 Quality & Efficiency
360 Quality & Efficiency
Oct 17, 2019 · Fundamentals

Why URL Encoding Is Essential for Reliable Web Requests

This article explains why URLs and their parameters must be encoded during testing, covering readability, completeness, reserved characters, non‑ASCII symbols, and unsafe characters, and provides practical examples to ensure reliable data transmission and correct parameter parsing.

HTTPURL encodingdata integrity
0 likes · 4 min read
Why URL Encoding Is Essential for Reliable Web Requests
FunTester
FunTester
Sep 23, 2019 · Backend Development

How to Build a Robust GET Parameter Builder with Java URL Encoding

This article walks through improving a Java GET‑parameter concatenation utility by overloading methods, handling Chinese characters with java.net.URLEncoder, and providing reusable code for converting JSON or Map arguments into properly encoded query strings for HttpClient requests.

API testingBackendGET request
0 likes · 5 min read
How to Build a Robust GET Parameter Builder with Java URL Encoding
Aotu Lab
Aotu Lab
Jun 30, 2017 · Fundamentals

Why Do escape and encodeURI Encode URLs Differently? Explore Percent-Encoding

This article explains the differences between JavaScript’s escape, encodeURI, and encodeURIComponent functions, detailing their encoding rules, percent‑encoding standards, reserved and unreserved characters, and how Unicode characters are transformed into UTF‑8 byte sequences, while also covering ASCII, Unicode, and UTF‑8 fundamentals.

JavaScriptURL encodingUTF-8
0 likes · 11 min read
Why Do escape and encodeURI Encode URLs Differently? Explore Percent-Encoding