This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$ldap_dn = "uid=".$_POST["username"].",dc=example,dc=com"; | |
$ldap_password = $_POST["password"]; | |
$ldap_con = ldap_connect("ldap.forumsys.com"); | |
ldap_set_option($ldap_con, LDAP_OPT_PROTOCOL_VERSION, 3); | |
if(@ldap_bind($ldap_con,$ldap_dn,$ldap_password)) | |
echo "Authenticated"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$ldap_dn = "cn=read-only-admin,dc=example,dc=com"; | |
$ldap_password = "password"; | |
$ldap_con = ldap_connect("ldap.forumsys.com"); | |
ldap_set_option($ldap_con, LDAP_OPT_PROTOCOL_VERSION, 3); | |
if(ldap_bind($ldap_con, $ldap_dn, $ldap_password)) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$ldap_dn = "cn=read-only-admin,dc=example,dc=com"; | |
$ldap_password = "password"; | |
$ldap_con = ldap_connect("ldap.forumsys.com"); | |
ldap_set_option($ldap_con, LDAP_OPT_PROTOCOL_VERSION, 3); | |
if(ldap_bind($ldap_con, $ldap_dn, $ldap_password)) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>Excel to JSON Demo</title> | |
<script src="xlsx.full.min.js"></script> | |
</head> | |
<body> | |
<script> | |
/* set up XMLHttpRequest */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'dompdf/autoload.inc.php'; | |
// reference the Dompdf namespace | |
use Dompdf\Dompdf; | |
// instantiate and use the dompdf class | |
$dompdf = new Dompdf(); | |
$dompdf->loadHtml(file_get_contents('sample.html')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'dompdf/autoload.inc.php'; | |
// reference the Dompdf namespace | |
use Dompdf\Dompdf; | |
// instantiate and use the dompdf class | |
$dompdf = new Dompdf(); | |
$dompdf->loadHtml('hello world'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<head> | |
<script src="lib/codemirror.js"></script> | |
<link rel="stylesheet" href="lib/codemirror.css"> | |
<script src="mode/css/css.js"></script> | |
<script src="addon/hint/show-hint.js"></script> | |
<script src="addon/hint/css-hint.js"></script> | |
<link rel="stylesheet" href="addon/hint/show-hint.css"> | |
<style> | |
body { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<head> | |
<script src="lib/codemirror.js"></script> | |
<link rel="stylesheet" href="lib/codemirror.css"> | |
<script src="mode/css/css.js"></script> | |
<style> | |
body { | |
background-color: #eee; | |
} | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<head> | |
<script src="lib/codemirror.js"></script> | |
<link rel="stylesheet" href="lib/codemirror.css"> | |
<script src="mode/javascript/javascript.js"></script> | |
<script src="mode/css/css.js"></script> | |
<style> | |
body { | |
background-color: #eee; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<head> | |
<script src="lib/codemirror.js"></script> | |
<link rel="stylesheet" href="lib/codemirror.css"> | |
<link rel="stylesheet" href="theme/neo.css"> | |
<script src="mode/javascript/javascript.js"></script> | |
<script src="mode/css/css.js"></script> | |
<style> | |
body { | |
background-color: #eee; |