Internet Marketing Business Forum


Internet Marketing Business Forum » MAIN FORUMS » Web Design & Programming » Is my php count select correct?
Web Design & Programming Building websites, coding scripts or developing apps? html, css, javascripts, ajax, php, asp, java, c+, C++ and other geeky info is here.

Reply
 
LinkBack Thread Tools Display Modes
Old 07-31-2009, 11:28 PM   #1 (permalink)
 John S's Avatar
 
Status: Junior Member
Join Date: Jul 2009
Posts: 2
John S is on a distinguished road
Default Is my php count select correct?

I can't figure why when my array is equal to 0 it still echos yes when it should say no.


$result = mysql_query("SELECT COUNT(*) FROM title WHERE title LIKE '%blue%'");
$array = mysql_fetch_array($result);
echo $array[0];

if ($array = 0) {
echo "yes";
}
else {
echo "no!";
}
Doing what peng says will always give me the else and never the if
John S is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 07-31-2009, 11:40 PM   #2 (permalink)
 DzSoundNirvana's Avatar
 
Status: Junior Member
Join Date: Jul 2009
Posts: 5
DzSoundNirvana is on a distinguished road
Default

you can't echo an array()
and you should not use a variable name of $array because that is a reserved word in PHP
do something like
$_array = mysql_fetch_array($result);

and you will have to
if(count($_array) == "0"){
echo "Yes";
}
else{
echo "No!";
}

you will have to
DzSoundNirvana is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 08-01-2009, 03:30 AM   #3 (permalink)
 bigbird's Avatar
 
Status: Junior Member
Join Date: Aug 2009
Posts: 1
bigbird is on a distinguished road
Default

You may use

if ($array == 0) ...

Because $array = 0 is an assignment statement, it always set $array[0] to 0.

Good luck,
peng

Running web services at http://www.eptop.com
bigbird is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Reply
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 09:05 AM.
Powered by vBulletin® Version 3.7.0 Beta 6
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.


Nav Item BG