PK

ADDRLIN : /home/anibklip/pcfcindia.com/dump/
FLL :
Current File : /home/anibklip/pcfcindia.com/dump/addajent.php

<?php
include("head.php");
?><head>
<script language="JavaScript" type="text/javascript">
<!--
function checkform ( form )
{

  // ** START **
  if (form.headname.value == "") {
    alert( "Please enter Company Name here." );
    form.headname.focus();
    return false ;
  }
  // ** END **

  // ** START **
  if (form.headperson.value == "") {
    alert( "Please enter Address." );
    form.headperson.focus();
    return false ;
  }
  // ** END **
  
  // ** START **
  if (form.headaddress.value == "") {
    alert( "Please enter Address." );
    form.headaddress.focus();
    return false ;
  }
  // ** END **
  

  
  return true ;
}
//-->
</script>
</head>
 <br>
<strong> &nbsp;Fill in details for new Ajent Account:</strong> 
<table cellspacing="3" align="center" width="100%" border="4" cellpadding="3">
<form action="ajentadded.php" method="get" onsubmit="return checkform(this);">
<tr>
<td valign="top"><strong>Company Name</strong>:</td><td><input type="text" name="headname" size="33"></td>
</tr>
<tr>
<td valign="top"><strong>Contact Person</strong>:</td><td><input type="text" name="headperson" size="33"></td>
</tr>
<tr><td><strong>Address</strong>:</td><td><textarea rows="4" cols="28" name="headaddress"></textarea></td></tr>
<tr>
<td valign="top"><strong>Phone</strong>:</td><td><input type="text" name="headphone" size="33"></td>
</tr>
<tr><td><strong>Description</strong>:</td><td><textarea rows="2" cols="28" name="headdecp"></textarea></td></tr>
<tr>
<tr><td align="center" colspan="2"><br><center><input type="submit" value="Add New Ajent"  class="amo-submit"></center></td></tr>
</form>
</table>

<?php
include "foot.php";
?>


PK 99