Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
urlencode() and urldecode() Functions?
What are urlencode() and urldecode() functions in PHP?
✍: FYIcenter
string urlencode(str) - Returns the URL encoded version of the input string. String values to be used in URL query string need to be URL encoded. In the URL encoded version:
For example, you will get "http://fyicenter.com/rate.php?r=100%25%2B" from this sample code:
<?php $r ="100%+"; $url = "http://fyicenter.com/rate.php?r=".urlencode($r); echo $url; ?>
urldecode() returns the URL decoded version of the given string.
2007-02-27, 7250👍, 0💬
Popular Posts:
What is Concern in AOP? gA concern is a particular goal, concept, or area of interesth There are m...
What will be printed as the result of the operation below: #define swap(a,b) a=a+b;b=a-b;a=a-b; void...
How To Change System Global Area (SGA)? - Oracle DBA FAQ - Introduction to Oracle Database 10g Expre...
How To Define a Sub Function? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions A...
What are the two fundamental objects in ADO.NET ? Datareader and Dataset are the two fundamental obj...