Show sourcecode
The following files exists in this folder. Click to view.
webbsrvprg/exercises/databaser/databaser2/
admin.php
createtable.php
databaser2.php
selectposts.php
start.php
updateposts.php
user.php
databaser2.php
17 lines ASCII Windows (CRLF)
<?php
$offset = 1;
include "../../exerciseIncl/start.php";
include "../../exerciseIncl/slides.php";
?>
<div id="flex" onmouseout="changeSlide()">
<a href='start.php' class='flexLink' onmouseover='changeSlide(1)' target='_blank'>Startsida</a>
<a href='createtable.php' class='flexLink' onmouseover='changeSlide(2)' target='_blank'>Createtable</a>
<a href='selectposts.php' class='flexLink' onmouseover='changeSlide(3)' target='_blank'>Select Post</a>
<a href='updateposts.php' class='flexLink' onmouseover='changeSlide(4)' target='_blank'>Update Post</a>
</div>
<?php
getSlides(3);
include "../../exerciseIncl/slut.php";
?>