<?php

$_POST['id'] = 'lower case id';
$_POST['ID'] = 'capital case id';

echo $_POST['ID'] . "\n" . $_POST['id'];