Server IP : 51.89.169.208 / Your IP : 3.148.107.92 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/yellowleaf/public_html/links/ |
Upload File : |
<meta http-equiv="refresh" content="1;url=/links/?type=m"> <? include '../connect.php'; $find=$_GET['find']; $updateid=$_GET['id']; if (!$find) { die("Enter a domain you're looking for."); } if (!$updateid) { die("Enter a an ID to update."); } $find=str_replace(array("http://","www."),array("",""),$find); $domain = "http://www.rightbiz.co.uk"; $c = file_get_contents("http://search.yahooapis.com/SiteExplorerService/V1/inlinkData?appid=ipchkcrap&query={$domain}&results=100&omit_inlinks=domain"); $c=split("<Url>",$c); $c[0]=""; foreach ($c as $v){ $v=split("</Url>",$v); $v=$v[0]; if (trim($v)) { $x++; if ($v == $find || (substr($v,0,strlen($v)-1) == $find) || ($v == $find."/") || (eregi($find,$v))) { if (!$f) { echo $x; $f=$x; } } $ec .= "$x - $v<br>\n"; } } if (!$f){ echo "0"; mysql_query("UPDATE `links` SET `pos`='{$f}' WHERE `id`='{$updateid}' LIMIT 1"); echo mysql_error(); } if ($f) { mysql_query("UPDATE `links` SET `pos`='{$f}' WHERE `id`='{$updateid}' LIMIT 1"); } echo "<br><br>"; echo $ec; ?>