Hi there,
I’m new to PHP about 5month (previously i don’t have any programming background), i study the basic PHP through online.
i found a tutorial from : http://www.phpwebcommerce.com/ , and there is some error in this tutorial + i need customize this tutorial for my site. I’m here to ask , is the tutorial suitable beginner like me ? is the tutorial consider for advanced used ?
i able to solve some error in this tutorial but it take too long. Can give a solution ? should i give up this tutorial on my site ? or just continue find solution ? but i’m already spent almost 2month in this tutorial. so far, i left shipping cost cant find solution…(but i have try do it for 2weeks)
Thank you.
there`s lot of online tutorials , like http://w3schools.com/php/default.asp , but if u cant understand a certain thing or wanna help , you can post here and we will try to help you … but first read tutorials/books …
Building a Shopping cart in PHP isn’t really a task that one should take on if they are a beginner to PHP. Before you start a tutorial like that, you want to have a good understanding of PHP/MySQL in general. There are quite a few good tutorial sites out there. I personally like tizag.com (w3schools.org is also ok, but is known to have incorrect/outdated code or information)
But it really depends on how much you know. You say you’re a beginner. Have you ever programmed in another language? How much of PHP do you know? Are you well versed in MySQL? If you can give more details on your level of skill, we can be of more help
i’m doing a simple form page with a user id and password that i already know
can you help me figure out whats wrong with my code here:
UserID and/or password incorrect
"); } ?>this
[php]
$userid = cfox;
$userPass = comt2103;
[/php]
you have to delimit string literals with a valid PHP string delimiter (most commonly used are double or single quotes)
[php]
$userid = “cfox”;
$userPass = “comt2103”;
[/php]
BTW when posting code, use code tags (the button with the # sign in it) and posting the error message you get along with your question can help get your questions answered faster.