Posted by Noodle on 11/22/39 11:52
Nicole wrote:
> Hello,
> Can anyone tell me or give me an online tool which can help me to
> convert php dynamic urls to html urls to make a google friendly
> site.I dont have apache server on my computer and I dont want to use
> it.Wihtout apache server is it possible? And I amusing windows server
> and not Linux.
> Thanks
> Sunita Bihani
If you want PHP to build dynamic links to embed on a page, you could
use the 'htmlspecialchars' function to convert characters in the
variables.
eg.
echo '<a href="http://www.google.com?q='.
htmlspecialchars($var1).'">link</a>';
Check out http://www.php.net/manual/en/function.htmlspecialchars.php
for more info.
Navigation:
[Reply to this message]
|