Jump to content

[SOLVED] Data in mysql echoed in php as a link


alconebay

Recommended Posts

I have a website field in mysql that I want to echo in a table with php. What happens is my domain automatically gets put in front of the website address being pulled from mysql. Example:

 

<a href="<? echo $web; ?>">Website</a>

 

if "$web" was "www.someothersite.com" the link that displays on the page will be http://www.mywebsite.com/www.someothersite.com

 

How do I get my domain out of the link?

no you dont have to do ya what about this then will it work.

<?php

//database connection.

$sql="select * from links";
$result=mysql_query($sql) or die(mysql_error());

while($x=mysql_fetch_assoc($result)){

echo" http://".$x['links']." ";
}
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.