How can I show or hide div depending on result come from server, in the file that handle the request, I get a customer object from db, depending on user request, if I didn’t find the corresponding customer I want to hide a div .
here’s my php code
$customer=getCustomerViaCellPhone($link,$cellPhoneNo);
if(!$customer){
$error = 'No result found';
}
here’s the view
<div id="customerInfo" class="<?php (is_null($customer))?'hide':''?>">
....
</div>
but it shows the div in both cases
You are missing the command
echoin your example so it should be:obviously your css would also need to define a class called
.hidethat haddisplay:hidden;in it.