Jump to content

Insert Array Data


Dysan

Recommended Posts

Hi,

 

How do I insert data into an array, upon clicking on different links?

 

Link Examples:

 

add.php?name=david

add.php?name=george

add.php?name=lisa

 

If all links are clicked, the array should be populated with the three names (david, george, lisa)

Link to comment
Share on other sites

<?php
session_start();

if(isset($_GET['name']))
{
      $name = $_GET['name'];
}

$_SESSION['nameArray'][] = $name; // we use a session so that when we click the links and change pages, we don't lose what we have.


echo '<pre>';
print_r($_SESSION['nameArray']);
echo '</pre>';

?>

 

This works perfectly. You have to use Sessions so that you can carry the value from page to page. Even though your not actually leaving the page, once you click the link the page refreshes and without sessions, you would lose the value of the previously set var.

 

 

Nate

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.