Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
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, 6316👍, 0💬
Popular Posts:
How do I use a scriptlet to initialize a newly instantiated bean? A jsp:useBean action may optionall...
How can we format data inside DataGrid? Use the DataFormatString property.
What is hashing? To hash means to grind up, and that's essentially what hashing is all about. The he...
What is difference between custom JSP tags and JavaBeans? Custom JSP tag is a tag you defined. You d...
How To Truncate an Array? - PHP Script Tips - PHP Built-in Functions for Arrays If you want to remov...