Raisch
extraordinary bit
Da er ja nicht nur $_GET['action'] sondern auch $_POST['action'] prüfen will, eher so:Ich persönlich löse solche Abfragen mit einem Array
PHP:function sanitize($s){ // @todo überprüfe den wert return $s; } if(!in_array(sanitize($_GET['action']), array('new', 'change', 'delete', 'deletepicture')) { echo ....; exit; }
PHP:
function sanitize( $s )
{
// @todo überprüfe den wert
return $s;
}
if( !in_array( sanitize( $_POST['action'] ), array( 'new', 'change' ) ) ||
!in_array( sanitize( $_GET['action'] ), array( 'delete', 'deletepicture') ) )
{
echo '...';
exit;
}
Gruß