Jump to content

Arrays ???


tarun

Recommended Posts

My Array Which Is Stored In items.php

Is Accesed By Pages Using include 'items.php';

items.php Looks Like This:

<?php
$itemList = array(

'000001'=>array('ID' => '000001','name' => 'Item 1','price' => '99.99','img' => 'images/1.jpg','cat' => 'Category 1'),

'000002'=>array('ID' => '000002','name' => 'Item 2','price' => '49.99','img' => 'images/2.jpg','cat' => 'Category 2')

);
?>

 

And This Code Is Used To Add To The Array:

$itemList['000003'] = array('ID' => '000003','name' => 'Item 3','price' => '69.99','img' => 'images/3.jpg','cat' => 'Category 3');

 

But It Doesn't Change The Contents Of items.php

 

Any Help...

 

 

Thnx,

Tarun

Link to comment
Share on other sites

Why would it change the contents of items.php unless you were writing to that page.

 

In order to change the contents (if I am reading this right) of items.php you have to open it for writing and write that line to it.

 

Now if you did it like this :

 

<?php
$itemList['000003'] = array('ID' => '000003','name' => 'Item 3','price' => '69.99','img' => 'images/3.jpg','cat' => 'Category 3');
include('items.php');
?>

 

The above will be over written with this:

 

$itemList = array(

'000001'=>array('ID' => '000001','name' => 'Item 1','price' => '99.99','img' => 'images/1.jpg','cat' => 'Category 1'),

'000002'=>array('ID' => '000002','name' => 'Item 2','price' => '49.99','img' => 'images/2.jpg','cat' => 'Category 2')

);

 

To solve that problem do this:

 

<?php
$itemList = array();
$itemList['000003'] = array('ID' => '000003','name' => 'Item 3','price' => '69.99','img' => 'images/3.jpg','cat' => 'Category 3');
include('items.php');
?>

// items.php
<?php
$itemList['000001'] = array('ID' => '000001','name' => 'Item 1','price' => '99.99','img' => 'images/1.jpg','cat' => 'Category 1');
$itemList['000002'] = array('ID' => '000002','name' => 'Item 2','price' => '49.99','img' => 'images/2.jpg','cat' => 'Category 2');

?>

 

Or do the declaration after the items.php list is called for item 3.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.