-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
59 lines (51 loc) · 2.49 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
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Tabel35</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<!-- Add your site or application content here -->
<?php include_once('db.php'); ?>
<h1>Test Formules</h1>
<?php include_once('functiesPHP.php') ?>
<h2>Klikbaar, uit de database, met functies:</h2>
<?php $arrSymboolGrootheid = getArrSymboolGrootheid(); ?>
<h2>getFormule, grootheid_id = 1</h2>
<?php getFormule(1, $arrSymboolGrootheid); ?>
<h2>getFormule, grootheid_id = 2</h2>
<?php //getFormule(2, $arrSymboolGrootheid); ?>
<h2> getFormule, grootheid_id = 4</h2>
<?php //getFormule(4, $arrSymboolGrootheid); ?>
<button type="button" id="testButton">TEST AJAX</button>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.9.1.min.js"><\/script>')</script>
<script src="js/formula_obtainment.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script>
$.ajaxSetup ({
cache: false
});
</script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src='//www.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>