Really strange
Posted: Thu Mar 20, 2003 11:19 am
Why this stupid conditional is always giving me the first value ("SI"), even though the condition is not true?
Any hipotesis?
Any hipotesis?
Code: Select all
<?php
<?
if ($row['Agua']=1){
echo "SI";
}
else{
echo "NO";
}
?>
?>