Hi
The info for this while statement comes from a query of two joined tables.
while($row = mysql_fetch_object($DatabaseResult))
{
$selectorData[] = array(
CS_SOURCE_ID=>$row->location_id,
CS_SOURCE_LABEL=>$row->location,
CS_TARGET_ID=>$row->staff_id,
CS_TARGET_surname=>$row->surname,
CS_TARGET_forename=>$row->forename,
CS_TARGET_LABEL= );
Now the next stage is that I want to combine CS_TARGET_surname and CS_TARGET_forename into CS_TARGET_LABEL whilst still inside this array.....is that possible...how do I do it.
Matt
Any help please