-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
47 lines (41 loc) · 1.06 KB
/
index.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
42
43
44
45
46
47
<!doctype html>
<html class="no-js" lang="en">
<?php
//Clear SESSION scope
session_start();
session_unset();
session_destroy();
session_write_close();
setcookie(session_name(),'',0,'/');
session_regenerate_id(true);
include "header.php";
include "functions.php";
$level = 1;
$age = 0;
?>
<body id="page-top">
<div class="container">
<h1>Lifepath Generator</h1>
<p>http://www.dandwiki.com/wiki/Character_Lifepath_(3.5e_Variant_Rule)</p>
<div class='row'>
<h3>Childhood</h3>
<p>You grew up <?php generate('birth');?>, raised by <?php generate('caretakers_origin');?>. You come from a line of <?php generate('background');?>, and <?php generate('environment');?>. <?php generate('caretakers_status');?>.</p>
</div>
<div class='row'>
<h3>Siblings</h3>
<p>You were raised <?php siblings();?></p>
</div>
<div class='row'>
<h3>Personality and Style</h3>
<p>You like to wear <?php generate('clothing');?>, and you <?php generate('hair');?>.</p>
<p>You have <?php generate('mark'); ?></p>
</div>
<div class='row'>
<h3>Fate</h3>
<?php
fate();
?>
</div>
</div>
</body>
</html>