href link in php

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
dumlee
Forum Commoner
Posts: 33
Joined: Mon Jun 30, 2008 12:06 am

href link in php

Post by dumlee »

echo "<a href=".HTTP_PATH."/Publish/Users/Signup/registration.php">"Click Here to Proceed";


please provide me the correct way of making it an hyperlink.

Its urgent
Dynamis
Forum Contributor
Posts: 122
Joined: Thu Jul 10, 2008 3:15 pm
Location: Indiana, US

Re: href link in php

Post by Dynamis »

Code: Select all

 
echo "<a href=".HTTP_PATH."/Publish/Users/Signup/registration.php>Click Here to Proceed</a>";
 
dumlee
Forum Commoner
Posts: 33
Joined: Mon Jun 30, 2008 12:06 am

Re: href link in php

Post by dumlee »

Thanks a lot
Post Reply