Gå til innhold

Diverse PHP test


Ueland

Anbefalte innlegg

Videoannonse
Annonse

Så må vi jo ha støtte for skikkelig farge på variabler aka " & ' :)

 

PHP
<?php

 

echo "hello world";

print "hello world";

print 'hello world';

 

 

?>

 

edit:

Blå tekst på alt annet

Endret av Ueland
Lenke til kommentar

Så mater vi den med litt mer kode for å teste identing

 

PHP
<?php

// Are we installed?

if(file_exists('install/install.lock') == false) {

    header("Location: install/install.php");

    die();

}

 

//    Require functions file

require('inc/functions.php');

 

//Lets find out what we want to do

switch($_GET['act'])

{

    case 'mod':    //Load Spesific module

    require('./inc/lib/module_loader.php');

    load_module();

    break;

 

    case 'task':    //Load a task file/function

    require('./inc/lib/task_loader.php');

    load_task();

    break;

 

    case 'phpinfo': //show php information

    show_phpinfo();

    break;

    

    case 'vikings':

    show_vikings();

    break;

    

    default:    //show forum index

    show_index();

    break;

}

?>[/color]

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