shadd Posted June 20 Share Posted June 20 (edited) how can i add two more variables to this array before passing it to the view: Say;Sub=>math and level=>''valley" Or how can i add two more variables to the array before passing them to view <?php $data = array ( 0 => array ( 'Q_id' => '1.1.1|||1.1.2|||1.1.3|||1.1.4|||1.1.5|||1.1.6|||1.1.7|||1.1.8|||1.1.9|||1.1.10|||1.1.11|||1.1.12|||1.1.13|||1.1.14|||1.1.15|||1.1.16|||1.1.17|||1.1.18|||1.1.19|||1.1.20|||1.1.21|||1.1.22|||1.1.23|||1.1.24|||1.1.25|||1.1.26|||1.1.27|||1.1.28|||1.1.29|||1.1.30|||1.1.31|||1.1.32|||1.1.33|||1.1.34|||1.1.35|||1.1.36|||1.1.37|||1.1.38|||1.1.39|||1.1.40|||1.1.41|||1.1.42|||1.1.43|||1.1.44|||1.1.45|||1.1.46|||1.1.47|||1.1.48|||1.1.49|||1.1.50', 'QueNo' => NULL, 'qNo' => '1|||2|||3|||4|||5|||6|||7|||8|||9|||10|||11|||12|||13|||14|||15|||16|||17|||18|||19|||20|||21|||22|||23|||24|||25|||26|||27|||28|||29|||30|||31|||32|||33|||34|||35|||36|||37|||38|||39|||40|||41|||42|||43|||44|||45|||46|||47|||48|||49|||50', 'SECTION' => 'SECTION A', ), 1 => array ( 'Q_id' => '1.1.51|||1.1.51.2|||1.1.51.3|||1.1.51.4|||1.1.51.5|||1.1.51.6|||1.1.51.7|||1.1.51.8|||1.1.51.9|||1.1.51.10', 'QueNo' => 'b|||c|||d|||e|||f|||g|||h|||i|||j', 'qNo' => '51|||51|||51|||51|||51|||51|||51|||51|||51|||51','SECTION' => 'SECTION B', ), ) ; ?> Edited June 20 by shadd more clarity Quote Link to comment https://forums.phpfreaks.com/topic/321873-how-to-add-strings-to-an-associatve-array/ Share on other sites More sharing options...
Solution Barand Posted June 20 Solution Share Posted June 20 $data['sub'] = 'math'; $data['level'] = 'valley'; Quote Link to comment https://forums.phpfreaks.com/topic/321873-how-to-add-strings-to-an-associatve-array/#findComment-1628434 Share on other sites More sharing options...
shadd Posted June 20 Author Share Posted June 20 (edited) 8 minutes ago, Barand said: $data['sub'] = 'math'; $data['level'] = 'valley'; thanks ,how will i loop through now in php Edited June 20 by shadd Quote Link to comment https://forums.phpfreaks.com/topic/321873-how-to-add-strings-to-an-associatve-array/#findComment-1628435 Share on other sites More sharing options...
Barand Posted June 20 Share Posted June 20 Using foreach() is still favourite, as it was last time you asked. Quote Link to comment https://forums.phpfreaks.com/topic/321873-how-to-add-strings-to-an-associatve-array/#findComment-1628436 Share on other sites More sharing options...
shadd Posted June 20 Author Share Posted June 20 46 minutes ago, Barand said: Using foreach() is still favourite, as it was last time you asked. incase i want to remove the two how do I do that in php,so i get the original array Quote Link to comment https://forums.phpfreaks.com/topic/321873-how-to-add-strings-to-an-associatve-array/#findComment-1628443 Share on other sites More sharing options...
Barand Posted June 20 Share Posted June 20 unset($data['sub']); unset($data['level']); Have you ever considered reading the manual at php.net? Quote Link to comment https://forums.phpfreaks.com/topic/321873-how-to-add-strings-to-an-associatve-array/#findComment-1628448 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.