'; echo '
'; $alc_add_column = mysql_query("ALTER TABLE wp_links ADD COLUMN link_located varchar(120) AFTER link_name"); $alc_add_column2 = mysql_query("ALTER TABLE wp_links ADD COLUMN link_status varchar(50) AFTER link_located"); if($_POST['check_links'] == "Check Links") { set_time_limit(999999); $check_list = getData(mysql_query("SELECT * FROM wp_links")); for($y=0;$yLinks Status Checked!'; } elseif($_POST['update_location'] == "Update") { $id = $_POST['id']; $link_located = $_POST['link_located']; $query = mysql_query("UPDATE wp_links SET link_located='$link_located' WHERE link_id=$id"); if($query) echo '
Link Location Updated!
'; } $link_list = getData(mysql_query("SELECT * FROM wp_links")); echo '
There are times that your link is not located in the Link URL so that\'s the purpose of Link Located that is why it\'s optional because if it\'s left blank then automatically it\'ll use Link URL instead. There are times that your link is not placed in the homepage but in the link page or other pages so you should input that in the Link Located field.
'; echo '
Your Site URL:' . get_settings('siteurl') . '
'; for($x=0;$x'; } echo '
Link NameLink URLLink Located (Optional)Status
' . $link_list[$x]['link_name'] . '' . $link_list[$x]['link_url'] . '
' . $link_list[$x]['link_status'] . '
'; echo '
NOTE: Loading Time will differ on how big is your blogroll.
'; echo '
'; ?>