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.

Example: enter image description here

1 answer 1

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