Initial commit

This commit is contained in:
melzubeir
2017-05-26 15:17:48 +04:00
commit 1f43248510
254 changed files with 72319 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
<?php
if(!empty($_REQUEST['msg'])){
$errmsg= $_REQUEST['msg'];
}
if($errmsg == "login_err"){?>
<script type="text/javascript">
alert("Invalid username and password.");
</script>
<?php } ?>
<?php if($errmsg == "ins_err"){?>
<script type="text/javascript">
alert("Error in Inserting Record.");
</script>
<?php } ?>
<?php if($errmsg == "ins_succ"){?>
<script type="text/javascript">
alert("Record Inserting Successfully.");
</script>
<?php } ?>
<?php if($errmsg == "del_succ"){?>
<script type="text/javascript">
alert("Record Deleted Successfully.");
</script>
<?php } ?>
<?php if($errmsg== "upd_succ"){?>
<script type="text/javascript">
alert("Record Updated Successfully.");
</script>
<?php } ?>