Show sourcecode

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

test/

.idea/
audio/
blokket.php
blokket2.php
dbtest.php
edit-stylesheet-process.php
edit-stylesheet.php
edit-stylesheet_original.php
ex/
favorites.php
img/
incl/
kmom03_get.php
kmom03_getform.php
kmom03_postform.php
kmom03_validate.php
login.php
login_MOS.php
me.php
report.php
select-stylesheet-process.php
select-stylesheet.php
select-stylesheet_original.php
social.php
src/
style/
style-default.php
style-default_original.php
style.php
style_original.php
test.php
viewsource.php

kmom03_get.php

1 lines UTF-8 Unix (LF)
1
<?php 
include("incl/config.php"); 
$pageTitle = "Skriv ut innehållet i variabeln \$_GET";
?>

<?php include("incl/header.php"); ?>

  <article class="border" style="width:70%;">
    <h1>Visa innehållet i <code>$_GET</code></h1>
    <p>Du anropade sidan med följande querystring:
    <code><?php echo htmlentities($_SERVER['QUERY_STRING']); ?></code></p>
    <p><code>$_GET</code> innehåller följande:</p>
    <pre><?php print_r($_GET); ?></pre>
    <hr>
  </article>

<?php include("incl/footer.php"); ?>