So you're saying just to put header(); right after my deletion statement?
if($action=='delete'){
mysql($dbName, "DELETE FROM youth WHERE employeeID='$employeeID'");
}
I have my header in another file. This is what I have at the top:
<?
include "header.php";
Anyways, I tried the header(); thing after the WHERE in the "if" statement and it gives me this message:
Wrong parameter count for header().
What's that?