Jump to content

What kind of operator is & ?


pmzq

Recommended Posts

Hy all,

I've got a part of a code like this :

if ($myrow["has_politics"] & 1) {
$galaxy = "<td width=\"20%\" align=center bgcolor=\"lightblue\">".
"<a class=\"x\" href=\"politics.php\">Politics</a>";
}

The "has_politics" is a resource row from mysql query named $myrow.

But what i don't understand if what does the & 1 mean after it ?

Does it mean if the "has_politics" row = 1 then $galaxy becomes lightblue ? or is it something else ?

Here is the code which sets that value in mysql:

$q = "UPDATE planet set has_politics = has_politics | 1 ".
"WHERE x='$myrow[x]' AND y='$myrow[y]' AND id!='$Planetid'";
$result = mysql_query ($q, $db);

So can someone explain some of this ?

I hope to hear something soon I realy need this

thnx in advance....

pMzQ,
Link to comment
https://forums.phpfreaks.com/topic/8258-what-kind-of-operator-is/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.