Can anyone tell me how I can update a cck field programmatically?
I am trying the following code:
$node->location[field_location][0][city] = 'tracker city';
$node->location[field_location][0][latitude] = 8.888888;
$node->location[field_location][0][longitude] = 9.999999;
without any success. I am aware I could directly interact with the database but I am looking for a different solution.
Can anyone help?