How can I make a banner so that it identifies a mobile device and offers to go to the play market or app store?
I would like to use php.
- Possible duplicate question: How to display an icon on an iOS application when you first access the site from mobile? - Grundy
|
1 answer
For example, you can use Mobile Detect. We do a check, depending on the type of device or operating system, we display the necessary banner, for example:
if( $detect->isAndroidOS() ){ //здесь вывод баннера для Андроида } if( $detect->isiOS() ){ //здесь вывод для iOS } - And how exactly can I bring such a banner? - Bullshit
- And how is your page formed? - Andrew Hobbit
|
