/home/mip/public_html_/old_mip/admin/edit_config.php
<?
session_start();
require_once("func_all.php");

do_html_header("Edit Config"); 

$formname="centerform";
$inputname= array("email_employer, email_comment");
$displayname= array("Email for New Employer");
JS_CheckRequired($formname,$inputname,$displayname,"","");

$config = getdata_one("*","config","1",1);
echo "<form method=post action='sqlupdate.php?what=config' name='$formname' onsubmit='return CheckRequired()'>";
?>
<input type="hidden" name="user_id" value="<?=$user_id?>">
<tr><td height="100%" align=center valign="top" style="padding-left:20px;">
<table width="904" border=0 align=center cellpadding='1' cellspacing='1'><br><br>
   <tr height=22><td colspan=2 class="head1"><b>Input the email address for the following:</td></tr>
	 <tr>
	   <td width="182" class="box"><b>Manpower Request Form</b></td>
     	 <td width="715" valign=top class="display1"><input type=text name="email_employer" size=40 value='<?=$config["email_employer"]?>'>
			 <font color=636563>Will receive the email informing of a Employers Request </td>
	 </tr>
	 <tr>
	   <td class="box"><b> Application From </b></td>
     	 <td valign=top class="display1"><input type=text name="email_job" size=40 value='<?=$config["email_job"]?>'>
			 <font color=636563>Will receive the email informing of a new applicant.			 </td>
	 </tr>		 
     
     <tr><td class="display1" colspan=2 align=center><input type=submit value="  Save  " name="user" class="button"></td></tr>
</table>
</td></tr>
</form>
<? 
 do_html_footer();
 if($statok) echo "<script>alert('Information Saved')</script>";
?>