Do you mean that you want the submitted form data to look like this:
custom_field_id[]=10=custom_field_value_10=Full-time
In either the URL query string, or in the POST body of an application/x-www-webform-urlencoded
request? If so, then no, you cannot do that. That is a violation of both the URL and application/x-www-webform-urlencoded
specifications. =
is a reserved separator character that cannot appear unencoded in the name
and value
fields, it must be url-encoded as %3D
:
custom_field_id%5B%5D%3D10=custom_field_value_10%3DFull-time
It is the receiver’s responsibility to url-decode the submitted data before then processing it. As such, it would see custom_field_id[]=10
and custom_field_value_10=Full-time
values, just as they appeared in the original HTML.
Related Posts:
- The origin on why ‘%20’ is used as a space in URLs
- How can I programmatically check if a Google User’s profile picture isn’t default?
- What is fbclid? the new facebook parameter
- How to write URLs in Latex?
- Get the values from the “GET” parameters (JavaScript)
- How can I get query string values in JavaScript?
- What is the difference between URL parameters and query strings?
- How to load script with jquery.load()?
- jQuery .load() not working
- How to find Port number of IP address?
- What does localhost:8080 mean?
- What is the difference between a URI, a URL and a URN?
- HTML encoding issues – “” character showing up instead of ” “
- Download single files from GitHub
- What character encoding is >?
- Different between ./ , ../ , ../../ , ~/ on file path(URL) in asp.net
- How to replace � in a string
- hashlib.md5() TypeError: Unicode-objects must be encoded before hashing
- How to change the URI (URL) for a remote Git repository?
- Converting string to byte array in C#
- Get the full URL in PHP
- the use of `%3F` in URL
- Does “\d” in regex mean a digit?
- forbidden 403 on image URLS
- Get the full URL in PHP
- What is base 64 encoding used for?
- Get the current URL with JavaScript?
- Python – Reading and writing csv files with utf-8 encoding
- Get the full URL in PHP
- Encode URL in JavaScript?
- Custom Tumblr theme wont save because of non-https urls?
- Where does this come from: -*- coding: utf-8 -*-
- how to convert negative hexadecimal to decimal
- Is it possible to get a list of files under a directory of a website? How?
- python encoding utf-8
- Is ‘# -*- coding: utf-8 -*-‘ also a comment in Python?
- what does a .php?id=&value=value means?
- What is the difference between UTF-8 and Unicode?
- Why does the URL http://a/%%30%30 crash Google Chrome?
- What’s different between URI, request-URI and URL?
- I have a string with “\u00a0”, and I need to replace it with “” str_replace fails
- “Unmappable character for encoding UTF-8” error
- Get HTML code using JavaScript with a URL
- Can a URL contain a semicolon and still be valid?
- Javascript isnull
- Get current URL with jQuery?
- Call Javascript function from URL/address bar
- Simplest way to read JSON from a URL in Java
- How do I modify the URL without reloading the page?
- How to get URL parameter using jQuery or plain JavaScript?
- ./xx.py: line 1: import: command not found
- Remove all special characters from a string
- Error: The requested URL “[no URL]”, is invalid
- .htaccess Remove WWW from URL + Directories
- Using unicode character u201c
- Can we use & in url?
- Javascript isnull
- What is a “slug” in Django?
- Input Type URL – Says “Please enter a URL” if HTTP is not included
- How to download image from URL
- How can I open a URL in Android’s web browser from my application?
- Error: The requested URL “[no URL]”, is invalid
- Check if URL has certain string with PHP
- Download Returned Zip file from URL
- How to open a URL using PHP?
- Python decoding Unicode is not supported
- How to check if the URL contains a given string?
- How to check if the URL contains a given string?
- Check if url contains string with JQuery
- What is the best regular expression to check if a string is a valid URL?
- Byte and char conversion in Java
- A potentially dangerous Request.Path value was detected from the client (*)
- Getting URL hash location, and using it in jQuery
- What is the meaning of ? (question mark) in a URL string?
- How to read html from a url in python 3
- How get value from URL
- Check if a JavaScript string is a URL
- What is “=C2=A0” in MIME encoded, quoted-printable text?
- Get query string parameters url values with jQuery / Javascript (querystring)
- C# Encoding a text string with line breaks
- Random Question Mark Icons In WordPress Text
- php, cookies, wordpress – how to make automatic login in one one site, login and on other one
- How to modify HTACCESS file for non-WordPress documents
- If a hacker changed the blog_charset to UTF-7 does that make WordPress vulnerable to further attacks?
- Strange characters – despite everything being UTF-8
- Encode text string being appended as query to URL [closed]
- Truncating custom fields
- How to stop WordPress using utf8mb4_unicode_520_ci collation?
- Syntax error, unexpected ‘class’ (T_CLASS) on line 1 after upgrade to php 5.6.4
- Character encoding issue after changing servers
- Add whitespace between Chinese and other letters
- How can I stop TinyMCE from converting my HTML entities to characters?
- WordPress Database Charset/Collate
- One for the gurus: upgrade to 3.x messed up only filenames with accented chars
- Why WP encodes UNICODE (UTF8) containing urls? Any drawbacks of UNICODE url?
- do_settings_sections() doesn’t escape quotes
- Allowing non-latin characters in registration
- JSON not valid after json_encode posts
- Non-Latin Characters in permalinks
- How to increase the character limit for post name of 200?