Results 1 to 5 of 5
-
21st Nov 2011, 05:13 PM #1OPBannedWebsite's:
WarezRelease.org ThatHosting.coDDL Count
hi
im tryna count and show sites ddl count, here is wot ihave
PHP Code:if(isset($core->siteSQL) && isset($core->siteSURL) && $core->numRows != 1) { //if site url are ok and are in db and have downloads
$sid = mysql_query("SELECT sid FROM wcddl_sites");
$getnumddls = mysql_query("SELECT COUNT (title) AS 'number' FROM wcddl_downloads WHERE sid = '$sid'");
$result = mysql_query($getnumddls) or die(mysql_error());
$siteinfos .= '<b>Site Downloads:</b> '.$result.'';
}
any help.....Chris2k Reviewed by Chris2k on . DDL Count hi im tryna count and show sites ddl count, here is wot ihave if(isset($core->siteSQL) && isset($core->siteSURL) && $core->numRows != 1) { //if site url are ok and are in db and have downloads $sid = mysql_query("SELECT sid FROM wcddl_sites"); $getnumddls = mysql_query("SELECT COUNT (title) AS 'number' FROM wcddl_downloads WHERE sid = '$sid'"); $result = mysql_query($getnumddls) or die(mysql_error()); Rating: 5
-
24th Nov 2011, 10:57 PM #2Respected DeveloperWebsite's:
wrzc.orgTry this - not tested and I haven't used WCDDL in months.
PHP Code:<?php
if(isset($core->siteSQL) && isset($core->siteSURL) && $core->numRows != 1) {
$query_siteid = mysql_query("SELECT sid FROM wcddl_sites WHERE url = '" . $core->siteSURL . "'");
$siteid = mysql_result($query_siteid,0);
$query_total = mysql_query("SELECT COUNT(*) FROM wcddl_downloads WHERE sid = '" . $siteid . "'");
$total = mysql_result($query_total,0);
$siteinfos .= '<b>Site Downloads:</b> '.$total.'';
}Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic
Huge list of Warez Sites and free Multiposter Templates
-
24th Nov 2011, 11:08 PM #3OPBannedWebsite's:
WarezRelease.org ThatHosting.coyo now this shows sites having 0 ddls.
-
24th Nov 2011, 11:11 PM #4Respected DeveloperWebsite's:
wrzc.orgI can't remember wcddl and It's late so just replace
$siteinfos .= '<b>Site Downloads:</b> '.$total.'';
with
$siteinfos .= '<b>'.$siteid.' Site Downloads:</b> '.$total.'';
You'll get a number before the Site Downloads part and it should be the id number of the site. If your not getting that then we can find the problem easierTutorial How to SEO your Warez Site a guide to help you increase your organic traffic
Huge list of Warez Sites and free Multiposter Templates
-
25th Nov 2011, 10:10 AM #5MemberWebsite's:
Proaudiozone.info HdMoviesNxT.com
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Count to 100
By Djlatino in forum General DiscussionReplies: 38Last Post: 17th Sep 2011, 07:15 AM -
Fileserve Count Zero. Why???
By makfun in forum File Host DiscussionReplies: 13Last Post: 13th Mar 2011, 04:36 PM -
Count the Farts
By upnorth in forum General DiscussionReplies: 0Last Post: 13th Oct 2010, 07:30 AM -
Count on KWWH..
By Devilz in forum General DiscussionReplies: 12Last Post: 5th Jul 2010, 05:58 PM -
WarezFX is down for the count...
By LinkFire in forum Webmaster DiscussionReplies: 45Last Post: 27th Jan 2009, 03:21 AM
themaCreator - create posts from...
Version 3.45 released. Open older version (or...