Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <?
  3.  
  4. $city = "Pordenone";
  5. $s = "Previsioni meteo a " . $city; //php capisce che è una stringa
  6.  
  7. ?>
  8. <html lang="it">
  9. <head>
  10. <meta charset="utf-8" />
  11. <title> <? echo $s ?> </title>
  12. <meta name="generator" content="Geany 1.25" />
  13. </head>
  14.  
  15. <body>
  16. <h1> <? echo $s ?> </h1>
  17.  
  18. <? // è il web server a eseguire queste istruzioni il browser mostra solo i risultati
  19.  
  20. echo "hey ";
  21. echo date("h:i:s");
  22.  
  23. ?>
  24.  
  25. </body>
  26.  
  27.  
  28.  
  29.  
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement