Webbserv1: Källkod
Webbserverprogrammering 1

Show sourcecode

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

webbsrvprg/exercises/

index.php
ovn_class1.php
ovn_class2.php
ovn_class3.php
ovn_class4.php
ovn_class5.php
ovn_class6.php
ovn_class7.php
ovn_cook1.php
ovn_cook2.php
ovn_cook3.php
ovn_cook3_2.php
ovn_cook4.php
ovn_form1.php
ovn_form2.php
ovn_form3.php
ovn_form4.php
ovn_form5.php
ovn_form6.php
ovn_form7.php
ovn_form8.php
ovn_funk1.php
ovn_funk2.php
ovn_funk3.php
ovn_funk4.php
ovn_funk5.php
ovn_funk6.php
ovn_gr1.php
ovn_gr2.php
ovn_gr3.php
ovn_gr4.php
ovn_gr5.php
ovn_gr6.php
ovn_inc1.php
ovn_inc1_2.php
ovn_inc2_1.php
ovn_inc2_2.php
ovn_inc2_3.php
ovn_inc2_sidslut.php
ovn_inc2_sidstart.php
ovn_str1.php
ovn_str2.php
ovn_str3.php
ovn_str4.php
ovn_str5.php
ovn_uppg1.php
ovn_uppg2.php
ovn_uppg3.php
ovn_uppg4.php
ovn_uppg5.php
ovn_uppg6.php

ovn_cook3_2.php

18 lines UTF-8 Windows (CRLF)
<?php
session_start
();
?>
<!DOCTYPE html>
<html>

<body>
<?php 
    
if ($_SESSION["pass"] != "123") {
        
header('Location: ovn_cook3.php');
    }
    else {
        echo 
"Hallå ".$_SESSION["namn"]." ".$_SESSION["enamn"].", här är hemligheterna:<br>";
        echo 
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
    }
?>
</body>
</html>