RE: Missing characters

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> 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



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux