close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

undefined index from different carts

Thread began 11/09/2009 1:45 pm by chssagmi366905 | Last modified 11/12/2009 12:23 pm by Eric Mittman | 1587 views | 3 replies |

chssagmi366905

undefined index from different carts

I have 4 different pages with add to cart buttons that all sent different session variables to the same "display manager" page. Is there 1 place that I could php code something like this to stop the error:

<?php
if(isset($_SESSION['cost'])){
$_SESSION['cost'] = $_SESSION['cost'];}
else
{ $_SESSION['cost'] = "";}
?>


I tried placing this code in display manager and in "WA_eCart\ eCart.php and still I get the below error. Because different data is sent from the different pages I get the following error for this particular variable. Thanks


Notice: Undefined index: cost in C:\wamp\www\Long Multi Shores\WA_eCart\ambCart_PHP.php on line 301

Sign in to reply to this post

Eric Mittman

Generally speaking when I'm checking if a variable is set I also check it to see if it is "" like this:

php:
if(isset($_SESSION['cost']) && $_SESSION['cost'] != ""){



This will ensure that the variable is set and not empty. Along with this any time you are using a session variable on a page you will need to ensure that the session has been started, you can do that with some code like this:

php:
if(!session_id())session_start();



This is a one line if statement checking for the session id, if it is not there then the session is started.

Sign in to reply to this post

chssagmi366905

follow up

I placed the code at the top of the "display manager" page but still get the same message. Is there somewhere else I should place this code so that when the session variable is not sent, there will not be an error message. Below is the code I changed to. Thanks

<?php
// start session varible
if (!isset($_SESSION)) {
session_start();
}
?>
<?php
if(isset($_SESSION['mthCost']) && $_SESSION['mthCost'] != "") {
$mthCost = $_SESSION['mthCost'];}

Sign in to reply to this post

Eric Mittman

Any time you get the undefined index message it is because the variable you are making reference to has not been defined. Since the code is a little different on the page the error message should be different also, it should include the exact line number where this is occurring.

If the warning is referring to your $mthCost variable then this could occur any time that the session variable is not set or is empty, this $mthCost variable will not get a value. If you make reference to this variable anywhere on the page then you can get this error if the variable has not been defined.

If you are printing out the variable anywhere on the page you can add in a check to make sure it is set like this:

[php[
<?php echo isset($mthCost)?$mthCost:"" ?>
[/php]

This will print the value if it is set, otherwise it will print nothing.

For starting the session you should make the check like this:

php:
if(!session_id())session_start();
Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...