view show.php @ 1105:0b0094db56da

Improve function stDBPrepareSQLUpdate() by adding new optional last argument to specify values array.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 16 May 2019 12:42:24 +0300
parents 7da8bde9b7be
children
line wrap: on
line source

<?php
//
// FAPWeb - Simple Web-based Demoparty Management System
// Party information display system
// (C) Copyright 2012-2017 Tecnic Software productions (TNSP)
//
require_once "mconfig.inc.php";
require_once "msite.inc.php";
require_once "msession.inc.php";

$pageCSS = "css/show.css";

stSetupCacheControl();

cmPrintPageHeader("PARTY INFORMATION DISPLAY SYSTEM",
  "  <script type=\"text/javascript\" src=\"showajax.js.php\"></script>\n".
  "  <script type=\"text/javascript\" src=\"genajax.js\"></script>\n", FALSE);
?>

<noscript>
  <div class="notice">
    <h1>Javascript required</h1>
    <p>
    The compo system page requires Javascript to be enabled for the AJAX functionality.
    <br />
    <a href="#">Please enable Javascript and reload this page</a>.
    </p>
  </div>
</noscript>

<div class="showView" id="mainView"></div>

<?php
cmPrintPageFooter(FALSE);
?>