/* ### Define Variables ###
Notice: This template for use with the CORPORATE
SPA site only. For other templates, see
/home/spaortho/includes/
Usage: Set $page, $headstyle, and $title to their proper values,
then simply paste the body html between the
tags.
########################################################## */
// Page -- From side menu "Spa Info..." (#2)
$page = "Employment Opportunities";
// Either 'big' or 'lil' header graphic style
$headstyle = "big";
// Title of Page
$title = "SPA Employment Opportunities";
// Menu's to Include on Sidebar
// To see a list of menu's & their numbers:
// http://www.spa-ortho.com/admin/menus.php3
$GetMenu[] = 2;
$GetMenu[] = 1;
// Extra information to include in
for this page
// (i.e. - JavaScripts, StyleSheets, etc.)
// Path must be relative to this directory, or
// can be from root (/www/...)
$ExtraHeader = "";
/*
########################################################## */
?>
include("/home/spaortho/includes/header.inc"); ?>
Employment Opportunities
$jobs = mysql_query("select * from employ group by title");
$head = mysql_query("select id,title from employ group by title");
while(list($id, $title) = mysql_fetch_row($head)):
echo(" $title
\n");
endwhile;
echo("
");
$i = 0;
if(!mysql_num_rows($jobs)): ?>
There are no employment opportunities at this time.
else:
while($job = mysql_fetch_array($jobs)):
$groupinfo = mysql_query("select name,link from sgroup where id=$job[sgroup]");
if($groupinfo && mysql_num_rows($groupinfo)):
list($name, $link) = mysql_fetch_row($groupinfo);
$group = "$name";
mysql_free_result($groupinfo);
else:
echo mysql_error();
endif;
?>
| Employment
Opportunity |
| Job
Title: |
|
| Hours
Per Week: |
|
| Salary/Hourly
Rate: |
|
| Qualifications/Experience:
|
|
| Other
Information: |
|
| Group
Information |
| Group
Name: |
")?> |
| Contact:
|
|
| Address:
|
|
| Fax
#: |
|
| E-Mail
Address: |
$job[email]")?> |
Description of Group/
Working Environment: |
|
|
|
[top] |
unset($group);
endwhile;
?>
endif ?>
include("/home/spaortho/includes/footer.inc") ?>