Skip to content

Instantly share code, notes, and snippets.

View kevinkhill's full-sized avatar

Kevin Hill kevinkhill

View GitHub Profile
<html>
<head>
<title>Lavacharts Dashboard</title>
</head>
<body>
<div id="my-dash">
<div id="chart">
</div>
<div id="control">
</div>
@kevinkhill
kevinkhill / dashboard-example.php
Last active January 17, 2016 22:47
Dashboard Example
<?php
$datatable = $lava->DataTable();
$datatable->addStringColumn('Name');
$datatable->addNumberColumn('Donuts Eaten');
$datatable->addRows([
['Michael', 5],
['Elisa', 7],
['Robert', 3],
['John', 2],
@kevinkhill
kevinkhill / index.php
Created September 26, 2015 23:39
PHP Forms Example
<!DOCTYPE html>
<html lang="en">
<head>
<title>Post Example</title>
<style type="text/css" rel="stylesheet">
html, body {
padding: 0;
margin: 0;
}