Jump to content

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']." ";
}
?>

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.