Non vedendo la mia ultima risposta ne deduco che non non sia partita.
Ho appena sviluppato un app Android con Android Studio che invia e riceve dati da un database PHP MyAdmin.
Il Back-End sul sito ovviamente lavora con PHP. Fino qui tutto ok.
Purtroppo i possessori di IPhone non vi possono accedere in quanto l'app è disponibile solo per Android, cosi mi sono chiesto:
Se io creassi un sito con la tecnologia responsive quest'ultimo sarebbe visibile da browswer a tutti i dispositivi sia Android che IOS.
Anzi, per la verità non mi servirebbe piu' nemmeno l'app Android . Andrei direttamente via sito.
Questa è una porzione di codice (funzionante su qualsiasi pc).
Ovviamente non postero' quello che riguarda il css perchè credo che non serva.
Tutto quello che riguarda i dati estrapolati dal database PHP, le variabili PHP e tutto il css non li posto xchè credo non servano.
Vorrei ancora ricordare che il tutto funziona quando eseguito da PC
La variabile PHP $customer ospita il nome del negozio che mi commisiona l'app e dovrebbe apparire in alto a sinistra.
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="w3.css">
<body>
<div class="w3-container w3-green">
<h1> <?php echo[color=#0040FF] $customer[/color] ;?></h1>
<p>Resize this responsive page!</p>
</div>
<div class="w3-row-padding">
<div class="w3-third">
<h2>London</h2>
<p>London is the capital city of England.</p>
<p>It is the most populous city in the United Kingdom,
with a metropolitan area of over 13 million inhabitants.</p>
</div>
<div class="w3-third">
<h2>Paris</h2>
<p>Paris is the capital of France.</p>
<p>The Paris area is one of the largest population centers in Europe,
with more than 12 million inhabitants.</p>
</div>
<div class="w3-third">
<h2>Tokyo</h2>
<p>Tokyo is the capital of Japan.</p>
<p>It is the center of the Greater Tokyo Area,
and the most populous metropolitan area in the world.</p>
</div>
<div class="w3-third">
<h2>Tokyo</h2>
<p>Tokyo is the capital of Japan.</p>
<p>It is the center of the Greater Tokyo Area,
and the most populous metropolitan area in the world.</p>
</div>
</div>
</body>
</html>
Grazie ancora