NOTE: This is a tutorial on creating a basic shopping cart system and giving an idea on how to create the basic functions of a shopping cart system and does not explain the securing of user input or checking whether the added products ‘exist’ as that all depend on what products you offer and so [...]
Continue reading...Monday, January 18, 2010
A second method to send user filled in data (input) from forms or just to send data through the url to another page, is the GET method. The GET method works through the url of the page, and defines the GET variables inside the url. Example: Url: webcodez.net/showthread.php GET variables: none Url: webcodez.net/showthread.php?p=23 Get variables: $_GET['p'] = 23 You see you [...]
Continue reading...
Saturday, January 23, 2010
3 Comments