I’m using video player (jwplayer) and it seems not working fine on blackberry
and looks like blackberry doesn’t support either flash or html5.
So I would like to redirect any blackberry visitors:
$useragent=$_SERVER['HTTP_USER_AGENT'];
Then will use:
if(preg_match('#########',substr($useragent,0,4))){
echo "Yes blackberry";
}else{
echo "No blackberry";
}
Will this idea works ? And if yes, then what should I put instead of ######### to recognize blackberry?
Thanks.
This should work: