Welcome Guest, Not a member yet? Register   Sign In
New Associative Array?
#1

[eluser]Dr. Seuss[/eluser]
I feel extremely foolish, but here goes: I want to create custom array variables. I try:

Code:
$scripts['includes']=array('superfish','layout', 'admin');
    $this->load->vars($scripts);

And then pass the variable to a view:

Code:
$this->load->view('common/header', $scripts);

In the view I have tried both

Quote:<?php

foreach ($scripts as $key => $val) {
echo "$key = $val\n";
}

?>

...and...

Quote:<?php

foreach ($scripts['includes'] as $key => $val) {
echo "$key = $val\n";
}

?>


In both cases, I get this error message:

Quote:A PHP Error was encountered

Severity: Notice

Message: Undefined variable: scripts

Filename: common/header.php

Line Number: 10

Just trying not to place everything within the "$data" array; I know that this must be possible and that I am missing something simple, but I cannot figure it out after two hours of flailing...any help would be appreciated.


Messages In This Thread
New Associative Array? - by El Forum - 11-25-2008, 12:28 PM
New Associative Array? - by El Forum - 11-25-2008, 12:38 PM
New Associative Array? - by El Forum - 11-25-2008, 01:00 PM
New Associative Array? - by El Forum - 11-25-2008, 01:26 PM
New Associative Array? - by El Forum - 11-25-2008, 01:38 PM
New Associative Array? - by El Forum - 11-25-2008, 02:11 PM
New Associative Array? - by El Forum - 11-25-2008, 02:23 PM
New Associative Array? - by El Forum - 11-25-2008, 02:34 PM
New Associative Array? - by El Forum - 11-25-2008, 02:52 PM
New Associative Array? - by El Forum - 11-25-2008, 08:09 PM
New Associative Array? - by El Forum - 11-26-2008, 01:24 AM
New Associative Array? - by El Forum - 11-26-2008, 06:09 AM
New Associative Array? - by El Forum - 11-26-2008, 09:47 AM
New Associative Array? - by El Forum - 12-08-2008, 12:36 PM
New Associative Array? - by El Forum - 12-08-2008, 12:54 PM
New Associative Array? - by El Forum - 12-08-2008, 01:39 PM
New Associative Array? - by El Forum - 12-08-2008, 01:40 PM
New Associative Array? - by El Forum - 12-08-2008, 01:50 PM



Theme © iAndrew 2016 - Forum software by © MyBB