'; 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"); $alc_add_column3 = mysql_query("ALTER TABLE wp_links ADD COLUMN link_note varchar(100) AFTER link_status"); 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']; $link_note = $_POST['link_note']; $error_msg = ""; for($x=0;$x'; } } if(empty($error_msg)) { echo '
Updated Successfully!
'; } else { echo '
Updated Successfully with errors:' . $error_msg . '
'; } } $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 URL (Optional)StatusNote
' . $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 '
'; ?>