Jump to content

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!! ";
}
?>

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.