Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbserverprogrammering/ovningar/inkludera/

include1.php
include1_callback.txt
include2_end.html
include2_start.html
include2a.php
include2b.php
include2c.php
include3_numGen.html
include3a.php
include3b.php
include3c.php

include1.php

20 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html>
<body>
  <?php
  error_reporting
(-1); // Report all type of errors
  
ini_set('display_errors'1); // Display all errors
  
ini_set('output_buffering'0); // Do not buffer outputs, write directly
  
echo '<br><br>';
  
  
?>
  <p>Spara texten "Hej svejs!" i en fil. Skapa en ny fil som skriver ut "Halloj!"och sen inkluderar den "Hej svejs"-filen 3 gånger (gör "include" på filen tre gånger).</p>
  <?php include 'include1_callback.txt';
  
?><br><br>
   <?php include 'include1_callback.txt';
  
?><br><br>
   <?php include 'include1_callback.txt';
  
?><br><br>
</body>

</html>