Posted by Jarrod on 10/11/48 11:52
Hi there,
I am trying to get the value of the varible into an if statment that will
determine what to do.
The value is from the end of an array, this works fine when i use echo to
print it out onto the page but cant pass the value into the if statement,
can someone please help me
$testing = '10';
$end = end($array); // this would equal to 10
if($testing == $end){
print 'yes';
}else{
print 'no';
}
[Back to original message]
|