Example #1
0
                    $h = new Head();
                    // add here
                } else {
                    echo 'Please check your entries';
                }
            } else {
                // displaying the list of all catagories and heads
                $c = new Catagory();
                $h = new Head();
                echo '<form method="POST" >Select a Catagory or Head<br><select name="catname">';
                foreach ($c->getList() as $cat) {
                    // name of all catagories from the DB
                    echo '<option>', $cat['name'], '</option>';
                }
                echo '</select><br><select name="headname">';
                foreach ($h->getHeads('chead') as $head) {
                    // name of all catagory heads from the DB
                    echo '<option>', $head['username'], '</option>';
                }
                // we set a hidden input cathead to rcathead, so that we know we want to assign a catagory to head
                echo '</select><br><input type="hidden" name="cathead" value="cathead"/><input type="submit" value="Assign" /></form>';
            }
            break;
        default:
            // if none of the above we simply ask to select something
            echo "Sorry you selected something that does not exist";
            break;
    }
    echo '</center>';
} else {
    echo "Please Select Something from Admin";