Forum Moderators: coopster

Message Too Old, No Replies

How do I get a live link in php results page

         

Acternaweb

2:01 pm on Apr 8, 2005 (gmt 0)

10+ Year Member



I have a form that has a web input field. I have htpp:// pre populated in the form. On the results page I want the link to be live, how do I do it?

dreamcatcher

2:25 pm on Apr 8, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi Acternaweb,

Just put your form data in <a> tags:

$url = $_POST['url'];

echo "<a href=\"" . $url . "\">" . $url . "</a>\n";

dc