Skip to content

Instantly share code, notes, and snippets.

View stevenbenisek's full-sized avatar

Steven Benisek stevenbenisek

View GitHub Profile
<?php
/*
* MySQL settings
*/
define('DB_NAME', 'username');
define('DB_USER', 'root');
define('DB_PASSWORD', 'password');
define('DB_HOST', 'localhost');
/*
@stevenbenisek
stevenbenisek / undoing-tables.html
Last active December 12, 2015 02:19 — forked from aarongustafson/undoing-tables.html
Add wai-aria roles
<table role="grid">
<thead>
<tr role="row">
<th scope="col" role="columnheader">Name</th>
<th scope="col" role="columnheader">Email</th>
<th scope="col" role="columnheader">Dept, Title</th>
<th scope="col" role="columnheader">Phone</th>
</tr>
</thead>
<tbody>