Jump to content

[SOLVED] Security


DarkPrince2005

Recommended Posts

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.

 

 

Link to comment
https://forums.phpfreaks.com/topic/74620-solved-security/
Share on other sites

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 
?>

Link to comment
https://forums.phpfreaks.com/topic/74620-solved-security/#findComment-377198
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.