<?=$_POST['web']?>
How do I make this an actual link?
a link? i assume you mean how do i make a hyperlink that directs me to the content of $_POST['web'] ?
echo '<a href="'.$_POST['web'].'"> clickme </a>';
im really not sure what you mean ur guna hav to be more specific...
<a href="<?=$_POST['web']?>"><?=$_POST['web']?></a>
Thanks
One problem, This solution gives me my website followed by the website that is stored as 'web' in the database;
e.g. my website is www.hello.com and in the database under web is stored www.site.com. When I use your code I get www.hello.com/www.site.com.
I got it. Thanks
<a href="http://<?=$POST['web']?>"><?=$POST['web']?>