this call the form from onpress
<script type="text/javascript">
function fileadd(){
jQuery.facybox({ div: '#addform' });
}
form script
----------------------------------------------------------
<script type="text/javascript">
// prepare the form when the DOM is ready
// bind form using ajaxForm
$('#addform').ajaxForm({
// target identifies the element(s) to update with the server response
target: '#htmlExampleTarget',
// success identifies the function to invoke when the server response
// has been received; here we apply a fade-in effect to the new content
success: function() {
$('#htmlExampleTarget').fadeIn('slow');
}
});
</script>
form
------------------------------------------------------
<div id="addform" style="display:none;">
<form action="filesadd.php" method="post" class="webform">
<fieldset>
<legend><span>Enter a File</span></legend>
<label for="box">Select a Box</label>
<select name="box">
<option SELECTED VALUE="">Select a Box</option>
<?php
do {
?>
<option value="<?php echo $row_Recordset1['boxref']?>"><?php echo $row_Recordset1['boxref']?></option>
<?php
} while ($row_Recordset1 = mysql_fetch_assoc($Recordset1));
$rows = mysql_num_rows($Recordset1);
if($rows > 0) {
mysql_data_seek($Recordset1, 0);
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
}
?>
</select>
<label for="fileno">File Number:</label>
<input id="fileno" name="fileno" class="text" type="text" />
<div id="htmlExampleTarget"></div>
<label for="authorised">Authorised By:</label>
<input name="authorised" type="text" class="text" id="authorised" value="<?php echo $_SESSION['kt_name_usr']; ?>" />
</fieldset>
<input class="submit" type="submit" name="submit" value="Add File" />
</form>
</div>
fileadd.php
-------------------------------------------------------
$sql = "SELECT custref FROM files WHERE custref = '$fileno' ";
$result = runSQL($sql) or die(mysql_error());
if (mysql_num_rows($result)>0){
echo '<div style="background-color:#ffa; padding:20px">' . $fileno . 'Is already in the database' . '</div>';
}else{
//insert into db;
echo '<div style="background-color:#ffa; padding:20px">' . $fileno . "Box: " . $box . $authorised . 'Successfull' . '</div>';
$sql = "INSERT INTO `files` (customer, authorisation, boxstatus, boxref, custref, filestatus) VALUES ('$customer', '$authorised', '$boxstatus', '$box', '$fileno', $filestatus)";
$result = runSQL($sql) or die(mysql_error());
//echo 'This record is valid';
//header("Location: http://localhost/sample/admin/files/index.php");
//exit();
}
|