Jump to content

Logic for Adding To A URL


dfalzoi

Recommended Posts

I'm trying to get code to work along the following logic (or something similar if this logic isn't PHP-friendly).

 

If a user inputs a URL with the http, I want the url left alone.

If the user inputs the URL starting with www, I want http:// added to the beginning.

If the user does anything else (in other words uses a relative link), I want the beginning of my url to be added on (because then I later check for it to open the website in a new window or not).

 

if (strpos($url, "http") == 0) { $url = $url; }
else if (strpos($url, "www") == 0) { $url = "http://".$url; }
else { $url = "http://www.mywebsite.com/".$url; };

 

Any suggestions? :confused:

Link to comment
https://forums.phpfreaks.com/topic/218733-logic-for-adding-to-a-url/
Share on other sites

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.