I am storing a concatenated string like this:
echo json_encode($PostedDate.$Places.$Company.$Designation.$ProjectDetails.$DesiredCandidate.$HRName.$HRContact.$Email);
I can split this string using JavaScript and store values in an array. But what I want to know is that suppose any of the values above is null, will it affect the array position?
Because, I want to keep the array location fixed. For example:
myArray[0] must hold $PostedDate.
If $PostedDate is null, then also, myArray[0] must be equal to NULL. $Places must not take the position of myArray[0].