Thanks to all!!!!..

Regards,
FA.

Brady Mitchell wrote:
Example
Page1.php
=======================================================
    $name_pro = "VC++ V2.4"
    print "<td width='200' class='texto2'> <a
href='page2.php?page=&value=$name_pro'> $name_pro </a></td>";
Use urlencode (http://php.net/urlencode):

print "<td width='200' class='texto2'> <a
href='page2.php?page=&value=".urlencode($name_pro)."'> $name_pro </a>
</td>";


Brady


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to