Guest User

Untitled

a guest
Nov 19th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?php
  2. $a1 = 'hello title';
  3. $b1 = 'hello!!';
  4. $c1 = 'ブロック要素';
  5. $d=0;
  6. for($i=1;$i<11;$i++){
  7. $d1 += $i;
  8. }
  9.  
  10. $tmp = <<<eot
  11. <!DOCTYPE html>
  12. <html lang="en">
  13. <head>
  14. <meta charset="UTF-8">
  15. <title>{$a1}</title>
  16. </head>
  17. <body>
  18. <h1>{$b1}</h1>
  19. <div>{$c1}</div>
  20. 処理結果:{$d1}
  21. </body>
  22. </html>
  23. eot;
  24.  
  25. setcookie('testcookie',$d1);
  26.  
  27. echo $tmp;
  28.  
  29. <?php
  30. $a1 = 'hello title';
  31. $b1 = 'hello!!';
  32. $c1 = 'ブロック要素';
  33. $d=0;
  34. for($i=1;$i<11;$i++){
  35. $d1 += $i;
  36. }
  37.  
  38. setcookie('testcookie',$d1);
  39.  
  40. ?>
  41. <!DOCTYPE html>
  42. <html lang="en">
  43. <head>
  44. <meta charset="UTF-8">
  45. <title><?=$a1?></title>
  46. </head>
  47. <body>
  48. <h1><?=$b1?></h1>
  49. <div><?=$c1?></div>
  50. 処理結果:<?=$d1?>
  51. </body>
  52. </html>
Add Comment
Please, Sign In to add comment