I have an array which is use the key as table header dynamically, I wanted to re-arrange the following in this order:
fullname, age, email, tel, project, type, purpose, budget, income 
default array element
Array
(
    [type] => Plastic
    [purpose] => Sell
    [budget] => 401,000-500,000
    [income] => 12,000-29,999
    [fullname] => John Smith
    [age] => 30
    [email] => john@email.com
    [tel] => 12345678
    [project] => Project A
)
Can it be done by move it manually in code?
 
     
     
     
     
    