I am parsing JSON using the following example php syntax
$carModel = strip_tags($_REQUEST['car']['model']);
The only problem is that some times the "model" array is missing from the provided JSON. When this is the case my php script shuts down when it reaches that line. Can any one recommend a way to check for the model array before parsing so that my php scrip will still run if "model" isn't present.