Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$result = mysql_query("INSERT INTO vacancies
(`jobid`, `date`, `location`, `title`, `desc`, `contact`, `contact_phone`, `filled`)
VALUES
('',CURDATE(), '$location', '$title', '$desc', '$contact', '$contact_phone', 'n')",$dbcnx);
if ($result == TRUE)
{
print ("A new job vacancy was listed as follows:<br>".
"<b>$title<br>$location<br></b><p>$desc</p>".
"Contact: $contact at $contact_phone for more information.".
"<br><br>Your vacancy is now online.");
}
else
{
print ("An <font color=\"red\">error </font>has occured; please try
again.");
print ("A new job vacancy was NOT listed for:<br><br>".
"<b>$title<br>$location<br></b><p>$desc</p>".
"Contact: $contact at $contact_phone for more information.".
"<br><br>");
}
mysql_close($dbcnx);
while (list($key,$val) = each($_POST))
{
$_POST[$key] = addslashes($val);
}