PHP is open source scripting language. It\'s widely used to develop web applications.  Home Web Programming PHP URL Verification

URL Verification


URL VerificationDo you have a big list of links in your database that you want to display but only want to show ones that are still in existance? Well theres a very easy method for doing so. All you need is the fsockopen() function. Here is an example:

<?
$testURL = @fsockopen("www.FreeTemplateDesigns.com", 80, $errno, $errstr, 30);
if($testURL)
{
echo "<a href="http://www.FreeTemplateDesigns.com">Free Template Designs</a>";
}
>?>

In this example you can see the fsocketopen() function being called as a test on the url. If it can connect to it, it exists and prints. Otherwise, nothing happens. now lets say you wanted to do this with a large list of links from your database. It's just as simple.

<?php
$link = mysql_connect('localhost', 'username', 'password');
mysql_select_db('database', $link);

$query = mysql_query("SELECT * FROM links");
while($row = mysql_fetch_array($query))
{
$testURL = @fsockopen("www.FreeTemplateDesigns.com", 80, $errno, $errstr, 30);
if($testURL)
{
echo "<a href="http://$row[url]">$row[name]</a><br>";
}
}
?>


Author's URL: Andrew Spiziri
PHP is open source scripting language. It\'s widely used to develop web applications. More PHP Tutorials: Featured Materials | Fresh Materials | More PHP Tutorials at LearnPHP.org

Reader's comments
comments john November 26, 2011 says:
please verify my youtube account
Reply
comments john November 26, 2011 says:
plz verify triczjohn_20@yahoo.com
Reply
comments mani November 07, 2011 says:
i wish all the best
Reply
comments mani November 07, 2011 says:
i want acces my account
Reply
comments sumann June 09, 2011 says:
i want to verify my id
Reply
comments vhon June 05, 2011 says:
yahooo!!!!!
Reply
comments abaymopon May 07, 2011 says:
please access my account in youtube
abaysimple_1991@yahoo.com

Reply
comments abaymopon May 07, 2011 says:
pls verifid my account
Reply
comments blaire May 04, 2011 says:
pls activte my you tube acount ..tnx :)
iamnekko@yahoo.com

Reply
comments ruturaj joshi April 28, 2011 says:
please acccess my a/c its no t open the msg come url verification my id - ruturaj@fun.com
Reply
comments seunacomahal April 26, 2011 says:
please verify my youtube account ...
Reply
comments seunacomahal April 26, 2011 says:
please verify my youtube account ...
Reply
comments seunacomahal April 26, 2011 says:
please verify my youtube account ...
Reply
comments seunacomahal April 26, 2011 says:
please verify my youtube account ...
Reply
comments seunacomahal April 26, 2011 says:
please verify my youtube account ...
Reply
comments shivaji patil April 25, 2011 says:
I have opened a new acct 05 days before but it says acct verification needed & acct not yet activated. please suggest suitable way to enter my acct.
Reply
comments shivaji patil April 25, 2011 says:
this is very nice service to us & I agree with the same.
Reply
comments jho gales March 29, 2011 says:
no coments
Reply
comments lohitha March 24, 2011 says:
i make a new orkut id ..now it gives massiage is,..........your account is not activater yet. saying for URL verification code .i dont know what is ti ...please tell me

Read more: http://www.webdesign.org/web-programming/php/url-verification.6852.html#ixzz1HV0mnzLL

Reply
comments ano ba 2 March 05, 2011 says:
^_^
Reply
comments chelle March 01, 2011 says:
pls activte my you tube acount ..tnx :)
Reply
comments jayzeecagomoc February 23, 2011 says:
pls. activate my youtube account i need it.. tnx
Reply
comments jayzeecagomoc February 23, 2011 says:
its good...
Reply
comments Daljit January 03, 2011 says:
Plz activate kdaljit@yahoo.in
Reply
comments Daljit January 03, 2011 says:
I want to activate my orkut ID .Plz help me[for GOD say].I shall greatfull to you.
Reply
comments janu December 18, 2010 says:
i make a new orkut id ..now it gives massiage is,..........your account is not activater yet. saying for URL verification code .i dont know what is ti ...please tell me


Read more: http://www.webdesign.org/web-programming/php/url-verification.6852.html#ixzz18TnKTALm

Reply
comments ankita November 13, 2010 says:
please verify my account"ankitaranjan26@gmail.com.co.in"
Reply
comments rizwanali October 26, 2010 says:
i want to activate orkut account but it is telling that plz visit urlverification what is it plz help me
Reply
comments dinesh October 23, 2010 says:
i make a new orkut id.....n msg is coming check url varification in order to activate ur google account.......i dont know abt it .plz tell me abt it.........
Reply
comments litu October 07, 2010 says:
i want to active my google account
Reply
comments vansale kristi November 03, 2010 says:
i want to active my google account
Reply
comments rajiva February 20, 2011 says:
Your comment...
Reply
comments jovelyn auditor September 25, 2010 says:
Please I want to activate my Google account! Thank you!
Reply
comments aman September 19, 2010 says:
i make a new orkut id ..now it gives massiage is,..........your account is not activater yet. saying for URL verification code .i dont know what is ti ...please tell me
Reply
comments Tanya August 31, 2010 says:
Trying to login in to read my google emial for verification of my account.
Reply
comments jimmy June 07, 2010 says:
i need to activate my you tube account
Reply
comments olaf December 31, 2005 says:
Hello,

This works good but will only do one part of the job. If someone needs to test if his backlink on a specific page still exists, you need to use some regulare expression like:
[code]
if (preg_match("/<a(.*)href=["']http://www.domain.com(/?)["'](.*)>(.*)</a>/", $part)) {
$var = true;
}


Check the whole function here: (Back) link checker

Regards Olaf

Reply
Add comments to "URL Verification"

Captcha