I have one view which contains following fields:
I got following result using following query:
select `key`,fieldvalue FROM page_view WHERE language = 'EN' AND page_flag = 'imprint'
and got following result:
But i want above result in such a way so that i can use record as follows because i dont want to retrieve via loop:
title link dmeta kmeta content
imprint imprint -- -- --
So that i can access it via
$result['title'],$result['link']...