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> | |
<meta charset="utf-8"> | |
<title>HTML Table to Markdown Extra Table</title> | |
<style> | |
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;} | |
body { font-family: -apple-system, "Segoe UI", Arial, Helvetica, sans-serif; line-height: 1.5; | |
text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } | |
textarea { width: 100%; height: 15em; } |
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 | |
// assume session_start(); somewhere prior to this | |
//set the user level based on the uh username (could also check a database or something) | |
//this function, if it exists, will get called by the class | |
function getUserLevelByName($uh_username) { | |
return in_array($uh_username, array('swalker', 'jvelasqu')) ? 100 : 10; //these people get 100 user level, everybody else gets a 10 | |
} | |
//include the php class |
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
/** | |
* gray test | |
*/ | |
* { -webkit-box-sizing: border-box; box-sizing: border-box; } | |
body { | |
background: #eee; | |
min-height:100%; | |
font-family: sans-serif; | |
text-shadow: 1px 1px 1px rgba(255,255,255,.8); |