>      I am able to see the contents of the $company_name array. The next
> part involves storing this as a session variable.
>
> I am trying to link this page to another search page using the  <a
> href=\"full-profile.php?name=".$row['company']. "\">--Link--</a>

If you're passing the company name in the URL, why are you adding the entire
array to the session? You can just use $_GET['name'] to get the name of the
"company" that was clicked on...

---John Holmes...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to