Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP

PHP shopping cart with sessions(No SQL)

Hi can someone point me in a direction to find an example of a shopping cart with php sessions and no sql added in. I just want to output the table with a item ID and quantity for now . I have watched the videos on here but i havent seen anything to do with sessions and a cart.

2 Answers

How are you going to put products in a cart with no database? Without one you can't store the id for the product

i have a few products in my html

<HTML>

<HEAD> </HEAD>

<BODY>

  <p>A09_DictCart/default.htm</p>

<center>

  <h2>Catalog</h2>

  <TABLE border=1 cellPadding=3 cellSpacing=1>
    <TBODY>
    <TR>
      <TD>Image</TD>
      <TD>ItemID</TD>
      <TD>Description</TD>
      <TD>Price</TD>
      <TD>Add Item To Cart</TD></TR>
    <TR>
      <TD><IMG src="./images/p007228iiob.jpg" width="100" height="100"></TD>
      <TD>007228</TD>
      <TD>Dri-Plus Dri-Fowl Wading Jacket</TD>
      <TD>$99.95</TD>
      <TD><a href="updateCart.php?action=add&amp;itemID=007228&amp;quantity=1">Add 
        this to my cart!</a></TD></TR>
    <TR>
      <TD><IMG src="./images/p007420iiob.jpg" width="100" height="100"></TD>
      <TD>007420</TD>
      <TD>Scent-Lok Blaze Over Jacket</TD>
      <TD>$69.95</TD>
      <TD><a href="updateCart.php?action=add&amp;itemID=007420&amp;quantity=1">Add 
        this to my cart!</a></TD></TR>
    <tr>
      <TD><IMG src="./images/p007741ii01.jpg" width="100" height="100"></TD>
      <TD>07741</TD>
      <TD>Switchback Boot</TD>
      <TD>$119.95</TD>
      <TD><a href="updateCart.php?action=add&amp;itemID=07741&amp;quantity=1">Add 
        this to my cart!</a></TD>
    </tr>
    <TR>
      <TD><IMG src="./images/p010315iiob.jpg" width="100" height="100"></TD>
      <TD>010315</TD>
      <TD>Master Guide Wading Boot</TD>
      <TD>$64.95</TD>
      <TD><a href="updateCart.php?action=add&amp;itemID=010315&amp;quantity=1">Add 
        this to my cart!</a>
      </TD>
    </TR>
  </TBODY>
</TABLE>

  <p><a href="viewCart.php">View Cart</a></p>

  <p>&nbsp;</p>

</center> </BODY>

</HTML>