Here is my code and I don't know how to fix it, please help thanks! here is the par where the error is, it's on the line with $value.
    $db_selected = mysqli_select_db($link, DB_NAME);
    if (!$db_selected) {
    die('Can\'t use '. DB_NAME . ': ' .mysqli_error());
      } 
    $value = $_POST ('Name');
    $value2 = $_POST ('Email');
    $query= "INSERT INTO person (Name, Email) VALUES ('$value',      '$value2' )";
    if (!mysqli_query($query)) {
    die('Error: ' . mysql_error());
     }
 
     
     
    