Sarah,
There are a couple functions that could do this for you.
Probably the fastest one for your example would be as follows.
$NewString = str_replace('%20', ' ', $value); // Removes the %20
characters
$NewString = str_replace '\', '', $NewString); // Removes \ character
echo $NewString;
htt
Try these:
http://www.php.net/manual/en/function.urldecode.php
http://www.php.net/manual/en/function.rawurldecode.php
HTH,
Jason k Larson
Sarah Gray wrote:
Hello,
Forgive me if this is an obvious question, but I am passing a value (a
string with spaces and quotations) back in a query string
a
Hello,
Forgive me if this is an obvious question, but I am passing a value (a
string with spaces and quotations) back in a query string
and do not know how to strip the extra characters that have been placed
into it.
For example.
$value = "Sarah's Test Page"
query string = mypage.php?value=Sarah
3 matches
Mail list logo