I have a tiny prob with http-links stored in MySQL DB.
A user-DB containing various info on members has a field reserved for a homepage address.
The address gets stored correctly in MySQL, however, when I want to display the address it always has my homepage added to the address like:
http://www.phpbuilder.com/www.dennison/home.html/
or (on local testing machine):
http://localhost/users/www.dennison/home.html
I just want the link like this: www.dennison/home.html
I use a small part of code like:
//---
if ($homelink == "checked")
{ echo " <a href='"$hyper."'>".$hyper."</a>";
}
//---
It's annoying - but I cannot find the error,
so, plz help!!!
tia