DarkPrince2005 Posted October 24, 2007 Share Posted October 24, 2007 I've got a employee database that enables a 'narator' to add,delete, or edit very sensitive records. but before it gets saved to the database it needs to be verified by the 'supervisor'. Is it possible for me to make the buttons on the employee management system that serves as a dummy and just sends the page to the supervisor via email for his authentication and processing. Quote Link to comment https://forums.phpfreaks.com/topic/74620-solved-security/ Share on other sites More sharing options...
darkfreaks Posted October 24, 2007 Share Posted October 24, 2007 sure it is <?php $submit= $_POST['submit']; if(!$submit) {echo " sorry but you havent filled out the form";} //errors if you havent filled out the form elseif($submit=="true") { header("Location: process.php");} // if submitted redirect to process page ?> Quote Link to comment https://forums.phpfreaks.com/topic/74620-solved-security/#findComment-377198 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.