Search found 487 matches
- Sun Feb 08, 2009 1:46 am
- Forum: PHP - Code
- Topic: msn contact grabber?
- Replies: 2
- Views: 233
msn contact grabber?
is there any "working classes" for that can do this?
- Sun Feb 08, 2009 1:45 am
- Forum: Job Hunt
- Topic: Professional Wrestling Events/Wrestlers Results Database
- Replies: 7
- Views: 1723
- Mon Sep 01, 2008 8:41 pm
- Forum: PHP - Code
- Topic: mySQL average?
- Replies: 2
- Views: 253
Re: mySQL average?
califdon wrote: You also used single quotes around vote_overall, which makes it a string, which the query reports out, but that is not coming from your database, it's because you used single quotes instead of backticks.
it worked ;]
- Mon Sep 01, 2008 7:38 pm
- Forum: PHP - Code
- Topic: mySQL average?
- Replies: 2
- Views: 253
mySQL average?
everytime someone votes, it sets up the votes and vote_overall based upon the day... but everytime i run this query i get no results and theres records of vote_overall's in my database? WHY? SELECT name, username, theme_id, screen_url, SUM( `downloads` ) AS total_downloads, SUM( `votes` ) AS total...
- Wed Aug 27, 2008 12:58 am
- Forum: PHP - Code
- Topic: stats by # of days inputted
- Replies: 7
- Views: 352
Re: stats by # of days inputted
is this thing that complicated?
- Tue Aug 26, 2008 7:45 am
- Forum: PHP - Code
- Topic: stats by # of days inputted
- Replies: 7
- Views: 352
- Mon Aug 25, 2008 7:37 pm
- Forum: PHP - Code
- Topic: stats by # of days inputted
- Replies: 7
- Views: 352
Re: stats by # of days inputted
nobody knows?
- Sun Aug 24, 2008 11:04 pm
- Forum: PHP - Code
- Topic: stats by # of days inputted
- Replies: 7
- Views: 352
Re: stats by # of days inputted
heres what i got now http://www.wpskins.org/wordpress-templates-top-downloads.php?day=3 everything is blank... if (!empty($_GET["start"])) { $start = mysql_real_escape_string($_GET['start']); } else ...
- Sun Aug 24, 2008 10:12 pm
- Forum: PHP - Code
- Topic: stats by # of days inputted
- Replies: 7
- Views: 352
Re: stats by # of days inputted
how do I use left join? this is what I got so far. my field is "demos" if(!empty($_GET['day'])) { $result = mysql_query("SELECT * FROM settings") or die(mysql_error()); $setting = mysql_fetch_object($result...
- Fri Aug 22, 2008 10:32 pm
- Forum: PHP - Code
- Topic: Creating an RSS FEED
- Replies: 5
- Views: 569
Re: Creating an RSS FEED
I thought rss feeds was allows to have html tags?
- Wed Aug 20, 2008 5:52 pm
- Forum: PHP - Code
- Topic: Creating an RSS FEED
- Replies: 5
- Views: 569
Creating an RSS FEED
http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fwww.wpskins.org%2Ffeed.rss = my validation. don't really understyand what is wrong with it. help please.don't know what iswrong. my code: //create rss feed $str = '<?xml version="1.0" encoding="utf-8"?> <rs...
- Thu Aug 14, 2008 7:27 pm
- Forum: PHP - Code
- Topic: creating a sub-domain with php
- Replies: 1
- Views: 95
creating a sub-domain with php
is it possible to create a sub-domain using php like subdomain.mydomain.com ??
- Thu Aug 14, 2008 7:06 pm
- Forum: PHP - Code
- Topic: Repeat script x number of times?
- Replies: 7
- Views: 1246
Re: Repeat script x number of times?
what error was giving?
- Thu Aug 14, 2008 3:19 am
- Forum: PHP - Code
- Topic: stats by # of days inputted
- Replies: 7
- Views: 352
Re: stats by # of days inputted
wow. didnt know such a thing existed in mySQL ;]
- Wed Aug 13, 2008 9:16 pm
- Forum: PHP - Code
- Topic: stats by # of days inputted
- Replies: 7
- Views: 352
stats by # of days inputted
how can I show stats from past say 3 days, 7 days, ect like most downloaded in past 3 days, most rated in past 3 days. I have my themes table with these stats as overall. whats the best approach? I know I'll probally have to create a new table called stats that is something like this stats_table: da...