Skip to content

Instantly share code, notes, and snippets.

View benguthrie's full-sized avatar

Ben Guthrie benguthrie

  • Bottle Rocket
  • Dallas, TX
View GitHub Profile
@benguthrie
benguthrie / add_staff.php
Created November 6, 2011 02:26
2 Stage JQuery Form
<?php session_start();
require_once('inc/inc.php');
// Build schools
$sql = "select id_institution,inst_name from institution";
$result = mysql_query($sql);
$count = mysql_num_rows($result);
$ddi = "<select id='inst'>";
for($a=0;$a<$count;$a++)