Hi all,
I have a problem with string comparisions
for ex; this fucntion
$id=$_GET['id'];
if(isset($id) && $id=benelli){
echo "benelli text";
}
if(isset($id) && $id=bettinsoli){
echo "bettinsoli text";
}
i do like above
but when i got id via URL to go benelli text
it writes both benelli text and bettinsoli text
i would like to go only ones text. but it displays both
thanks in advance