本文整理匯總了PHP中Head::getHeads方法的典型用法代碼示例。如果您正苦於以下問題:PHP Head::getHeads方法的具體用法?PHP Head::getHeads怎麽用?PHP Head::getHeads使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Head
的用法示例。
在下文中一共展示了Head::getHeads方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Head
$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";