• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

PHP if, else.

Faraonekkk

New Member
Joined
Feb 15, 2010
Messages
686
Reaction score
4
if ($pasoddz <> $vbvbc) {
print "We do not received your item.";
exit;
}

how can i add else to this if??
if ($pasoddz <> $vbvbc) else ($pasoddz <> $vbvbc)

i got erro ;/

- - - Updated - - -

if ($pasoddz <> $vbvbc){
if ($zcvz <> 0){
print "We do not received your item.";
exit;
}
}


hjalp? xD

- - - Updated - - -

if($pasoddz <> $vbvbc && $zcvz == 1){

its not reading this second
$zcvz == 1
 
Last edited:
Back
Top