handleiding-maker
Hier is de code:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
$step = $_GET['step'];
$ps = $step - 1;
$ns = $step + 1;
If ( $step == null )
{
$step = 0;
}
If ( file_exists('./lessons/'.$step.'.txt') )
{
$data = file_get_contents('./lessons/'.$step.'.txt');
}
Else
{
echo 'Bestaat niet!<br>
<A href="#" onclick="javascript:history.go(-1);">Ga terug!</A>';
exit;
}
$data = explode('
|||
', $data);
$text = $data[1];
$text = str_replace('
', '<br>', $text);
If ( $data[0] != 'none' )
{
$setting = explode(',', $data[0]);
foreach ( $setting as $exam )
{
$dat = explode('example'.$exam, $text);
echo $dat[0];
highlight_file('./lessons/examples/'.$exam.'.php');
$text = $dat[1];
}
}
echo $text;
echo '<br><br><A href="./phples.php?step='.$ps.'">Terug naar de vorige les</A><br><A href="./phples.php?step='.$ns.'">Naar de volgende les</A>';
?>
$step = $_GET['step'];
$ps = $step - 1;
$ns = $step + 1;
If ( $step == null )
{
$step = 0;
}
If ( file_exists('./lessons/'.$step.'.txt') )
{
$data = file_get_contents('./lessons/'.$step.'.txt');
}
Else
{
echo 'Bestaat niet!<br>
<A href="#" onclick="javascript:history.go(-1);">Ga terug!</A>';
exit;
}
$data = explode('
|||
', $data);
$text = $data[1];
$text = str_replace('
', '<br>', $text);
If ( $data[0] != 'none' )
{
$setting = explode(',', $data[0]);
foreach ( $setting as $exam )
{
$dat = explode('example'.$exam, $text);
echo $dat[0];
highlight_file('./lessons/examples/'.$exam.'.php');
$text = $dat[1];
}
}
echo $text;
echo '<br><br><A href="./phples.php?step='.$ps.'">Terug naar de vorige les</A><br><A href="./phples.php?step='.$ns.'">Naar de volgende les</A>';
?>
Vergeet niet om een lessons map te maken met daarin een examples map.
Gebruik:
Handleiding worden opgeslagen als tekstbestand (.txt)
Bijv:
De examples moeten als php-bestand worden opgeslagen.