@kizzel77 give me your e mail id ...i found the solution...the problem is that the money_format() fuction does not work on windows...i will send it to you via email...
Great video! just to clarify session vars are stored on the server and accessed with a session id cookie. This makes it so sessions vars can't be tampered with unlike cookies which come from the user and can be manipulated. If you need to make sure the vars aren't altered by the user use session vars not cookies.
hey if we were to put a size drop box in, 1) how many areas would we have to place it because there would have to be the actual code that lets them choose a size and then the code that brings it all around to say the cart and then on to me. so there is at least 2 places. and 2) once thats done how might you suggest i organize it for items that do not need the size option. im assuming ide have to make multiple product pages, one with and one without but then again its 2am here so maybe im wrong.
Is the subject of sales tax going to be implemented into this tutorial series. This is my first exposure to php cookies and muli dimensional arrays, These tutorials just keep getting better. I will watch your php variables tutorial and let you know if i have any issues. I would like to include the actual cookies like you mentioned for better flow of their shopping experience.
Dude was going to ask if you will be putting up the source files soon! I have try'd the code for video 3 in dreamweaver but still getting errors on the php blocks, gone through everything 4 or 5 times now but still getting errors, as far as I know the code i got is the exact same as yours! just lost for ideas now
@phillipdews33 hi what errors do you get? the error description is very exact and does even list the number of the error line. But usually you are getting errors for not ending a line with a semicolon or forgetting to close a bracket.
sorry for my bad english this isn't my mother tongue^^
@Dectois basically i keep getting errors on my index.php file under the store admin and keep getting errors on lines 8,9,14 and 18 saying "there is a syntax error on line 8, code hinting may not work"
@phillipdews33 i can't really tell you the cause of the problem without seeing your code. But if i am correct these must be the lines where you check the Session Variables with preg_replace. You may have done a little typo at the first argument of the function. or forget to close all brackets.
You may have someone else with basic php knowledge look over your code.
You can also send me the code per mail, if you like --> lucas.dworschak@gmx[dot]at
This has been flagged as spam show
Sometime we don't understand how inportant our idea or thinking is to other
samueldeals 5 days ago
This has been flagged as spam show
Sometime we don't understand how inportant our idea or thinking is to other
samueldeals 5 days ago
Hi Adam,
I need your help!
I want add in my cart.php the name and price of product, I search my self but....I cant not find any information about,please help me.....
JAGUAR9333 3 weeks ago
This has been flagged as spam show
$price is "Notice: Undefined variable: price"
$pricetotal = money_format("%10.2n", $pricetotal); is Call to undefined function money_format()
bboytoyo 1 month ago in playlist Ecommerce Website Tutorial PHP MySQL Tutorial PayPal IPN
$pricetotal = $price * $each_item['quantity'];
$cartTotal = $pricetotal + $cartTotal;
setlocale(LC_MONETARY, "en_US");
$pricetotal = money_format("%10.2n", $pricetotal);
bboytoyo 1 month ago in playlist Ecommerce Website Tutorial PHP MySQL Tutorial PayPal IPN
Excellent & very informative!
Thanks for the great help
LearnThruSong 3 months ago
This has been flagged as spam show
Thank you for posting this video :
BenMur777 4 months ago
Comment removed
doroshii11 4 months ago
Comment removed
doroshii11 4 months ago
I love your sense of humor. You're a great teacher.
thisistotallylife 5 months ago in playlist Ecommerce Website Tutorial PHP MySQL Tutorial PayPal IPN 2
@kizzel77 give me your e mail id ...i found the solution...the problem is that the money_format() fuction does not work on windows...i will send it to you via email...
MahfuzCSE 6 months ago
@kizzel77 i can't fix it yet. if i can fix it , i will inform you..
MahfuzCSE 6 months ago
Comment removed
MahfuzCSE 6 months ago
Can anyone help me..
I HAVE A PROBLEM IN cart.php page....whenever i click on Add to cart button , it displays the following message
"Fatal error: Call to undefined function money_format() in cart.php on line 120"
MahfuzCSE 6 months ago
@MahfuzCSE did u ever get that fixed? i have the same error....
kizzel77 6 months ago
Great video! just to clarify session vars are stored on the server and accessed with a session id cookie. This makes it so sessions vars can't be tampered with unlike cookies which come from the user and can be manipulated. If you need to make sure the vars aren't altered by the user use session vars not cookies.
MasterCranks 7 months ago
Great video! Set up your ecommerce business for free with our Easy Help Zen Cart Tutorials:
ZenCartEasyHelp 7 months ago
hey if we were to put a size drop box in, 1) how many areas would we have to place it because there would have to be the actual code that lets them choose a size and then the code that brings it all around to say the cart and then on to me. so there is at least 2 places. and 2) once thats done how might you suggest i organize it for items that do not need the size option. im assuming ide have to make multiple product pages, one with and one without but then again its 2am here so maybe im wrong.
splinterz91 8 months ago
thank adam great video
greenfeld5 10 months ago
great series adam, shame you're not including the sizing options though, considering were mostly beginners
EyesTheSouth 11 months ago
Is the subject of sales tax going to be implemented into this tutorial series. This is my first exposure to php cookies and muli dimensional arrays, These tutorials just keep getting better. I will watch your php variables tutorial and let you know if i have any issues. I would like to include the actual cookies like you mentioned for better flow of their shopping experience.
Thank you,
Eric
cockerspanielhome 1 year ago
Thanks to your tutorials I am learning a whole bunch. Go Adam!
rustyroother 1 year ago
thanks adam
ngshane 1 year ago
Sorry brother man just started listening to the vid so ignore my last post! :/
phillipdews33 1 year ago
Dude was going to ask if you will be putting up the source files soon! I have try'd the code for video 3 in dreamweaver but still getting errors on the php blocks, gone through everything 4 or 5 times now but still getting errors, as far as I know the code i got is the exact same as yours! just lost for ideas now
phillipdews33 1 year ago
@phillipdews33 hi what errors do you get? the error description is very exact and does even list the number of the error line. But usually you are getting errors for not ending a line with a semicolon or forgetting to close a bracket.
sorry for my bad english this isn't my mother tongue^^
Dectois 1 year ago
@Dectois basically i keep getting errors on my index.php file under the store admin and keep getting errors on lines 8,9,14 and 18 saying "there is a syntax error on line 8, code hinting may not work"
phillipdews33 1 year ago
@phillipdews33 i can't really tell you the cause of the problem without seeing your code. But if i am correct these must be the lines where you check the Session Variables with preg_replace. You may have done a little typo at the first argument of the function. or forget to close all brackets.
You may have someone else with basic php knowledge look over your code.
You can also send me the code per mail, if you like --> lucas.dworschak@gmx[dot]at
Dectois 1 year ago
Great!
XMAnuca 1 year ago
Well dOne adam u r the best man :)
Shahrukh65 1 year ago
Nice tutorial :) can't wait for the next parts
techgeekh 1 year ago
WOOO Great tutorial adam
l3rodey 1 year ago