-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
23 lines (20 loc) · 950 Bytes
/
Copy pathabout.php
File metadata and controls
23 lines (20 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
//session_id('sw');
//session_start();
require_once('classes/autoloader.php');
include_once('config/db.php.inc');
include_once('include/commonFunctions.php.inc');
include("include/header.php.inc");
echo "<h2>Sessionweb is using the following open source software:</h2><br>";
echo "CKEditor: http://ckeditor.com<br>";
echo "jQuery: http://jQuery.com<br>";
echo "jQuery-File-Upload: https://github.com/blueimp/jQuery-File-Upload/<br>";
echo "jQuery-Autosave: http://archive.plugins.jquery.com/content/jquery-autosave-110<br>";
echo "jquery.getparams: http://???<br>";
echo "jquery.valdate: http://bassistance.de/jquery-plugins/jquery-plugin-validation/<br>";
echo "niceforms: http://www.emblematiq.com/projects/niceforms/<br>";
echo "ColorBox: http://jacklmoore.com/colorbox/<br>";
echo "Icons: http://openiconlibrary.sourceforge.net/<br><br>";
echo "<div>Design inspired from nodethirtythree.com</div>";
include("include/footer.php.inc");
?>