Jump to content

[SOLVED] what's wrong with this code?


jimmyyami

Recommended Posts

remove the quotes from 1 add another equals

 

edit:

 

if($krida == 1)  i think it should be like that

maybe

if($krida == "1") but I think a string shouldn't be compared to a number cuz it will be slower

 

 

 

 

P.S. I haven't programmed in php in 2 years just started today again. So don't take me seriously

you should be able to leave the quotes in; but you do not have your operator right. you have an assignment operator; when you should have a comparison operator.

 

should be like this:

<?php
$krida = rand(1,2);

if ($krida == "1"){

   echo " I hate you!! ";

} else {

   echo " I love you!! ";
}
?>

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.