Hi i want to echo session but it gives error...code is
session_start();
if(isset($_GET['P_Price']))
{
$_SESSION['Price'] = $_SESSION['Price']+ $_GET['P_Price'];
$_SESSION['Items']++;
" <div class=\"shopping_cart\">
<div class=\"cart_title\">Shopping cart</div>
<div class=\"cart_details\">Items
echo $_SESSION['Items']; <br /> /// this line has error
<span class=\"border_cart\"></span>
Total: <span class=\"price\">echo $_SESSION['Price']; </span> ////this line has error also
</div>
<div class=\"cart_icon\"\><a href=\"#\" title=\"header=[Checkout] body=[ ] fade=[on]\"><img src=\"images/shoppingcart.png\" alt=\"\" title=\"\" width=\"48\" height=\"48\" border=\"0\" /></a></div>
</div>";