Gå til innhold

Ueland tester litt


Ueland

Anbefalte innlegg

Videoannonse
Annonse

PHP

<?php

/**

 * @package Vikingboard

 * @author Tor Henning Ueland <[email protected]>

 * @version 0.1

 * 

 * $Id: help.php 819 2006-06-28 22:56:44Z jorgenboard $

 */

 

//yes, we are here

define("VBOARD", 1);

 

//============

//  Require kernel file

//============

require_once('inc/functions.php');

 

//============

//  O What to do...

//============

 

switch($_GET['act']) {

 

    case 'rules':

    show_information("rules");

    break;

    

    case 'guidelines':

    show_information("guidelines");

    break;

    

    default:

    show_information("help");

    break;

}

 

//============

//  Now show some information

//============

function show_information($what="help") {

 

    //Get needed variables

    global $cache, $db, $screen;

    $lang   =   new lang_help();

 

    //Get "something" from cache

    $info   =   $cache->query('get_help_topics', array($what));

    $info   =   $info[0];

    

    //Set up html elements

    $html['title']      =   $lang->$what;

    $html['content']    =   $info->content;

 

    //add html to page

    $screen->add_html('help', $html);

 

    //Set up navigation

    $navigation["help.php?act={$_GET['act']}"]  =   $html['title'];

 

    //Wrap page and print it

    $screen->add_wrapper($lang_help->help_p, $navigation);

    $screen->print_page();

}

?>

Endret av Ueland
Lenke til kommentar

PHP
<html>

<body>

<?php

// Må kommentere litt selvfølgelig

include('forum.php');

$foo 'bar';

foreach ($array as $key => $value) {

if (&#33;isset($key)) {

echo $key ' haha';

}

}

?>

</body>

</html>

Huston, we got a problem!! Utropstegn (!) fungerer ikke.

Endret av endrebjorsvik
Lenke til kommentar
Gjest
Dette emnet er stengt for flere svar.
×
×
  • Opprett ny...