Upgrade to the latest Flash Player for improved playback performance. Upgrade now or more info.
30,742
Uploaded by flashbuilding on Dec 23, 2010
http://www.developphp.com
In this 4th video we will create the Inventory management page in the Admin area. List all inventory and make a form and parser for adding new inventory items. The E - Commerce Web Site we will be assembling is one in which all of the inventory is in a MySQL database and we offer a custom PHP cart for a unique shopping experience. It is a site that handles sales, customers, and inventory.
-
88 likes, 2 dislikes
Advertisement
20 videos

Ecommerce Website Tutorial PHP MySQL Tutorial PayPal IPN
26:45
3. E - Commerce Website Tutorial - Create the PHP Admin Log In Systemby flashbuilding34,700 views
21:57
1. E - Commerce Website PHP Tutorial - Setting Up the Pages, Layout, and Templatesby flashbuilding86,801 views
24:37
2. E - Commerce Website PHP Tutorial - MySQL Database and its Tablesby flashbuilding46,444 views
26:34
Part 2: How to Build Custom PHP and MySQL CMS Website Softwareby flashbuilding48,595 views
21:46
20. Ecommerce Website Tutorial : PayPal IPN PHP Instant Payment Notification Scriptby flashbuilding21,627 views
12:18
Belajar buat website - tutorial langkah demi langkah (Part 1 of 3)by mygogvo7,277 views
2:05
maintain eye contact... "mission impossible"by CalifasVision15,191,628 views
13:39
19. E - Commerce Website PHP Tutorial - PayPal HTML Shopping Cart Variablesby flashbuilding14,881 views
21:06
10. E - Commerce Website Tutorial - Shopping Cart PHP Multidimensional Array +by flashbuilding14,568 views
9:16
How To Use WordPress for E-Commerce (for dummies)by TheCorporateSamurai16,421 views
21:36
8. E - Commerce Website PHP MySQL Tutorial - Product Display Pageby flashbuilding20,844 views
20:28
E-Commerce - Part 1by courseonline300025,257 views
8:38
PHP Shopping cart using SESSION variablesby WebmasterVideoSchool15,123 views
5:19
WordPress e-commerce Plugin Tutorial Professional Versionby allwpcart1,788 views
6:32
Inventory Management - An Introductionby robobyrne41,953 views
8:40
PHP MySQL Tutorial: Connect to a MySQL Database -HD-by RiverCityGraphix58,043 views
5:27
Tutorial membuat aplikasi berbasis web dengan PHP & MySQL (Bag. 1)by abaij7,990 views
18:10
jQuery Ajax PHP Tutorial : Swap out page content on your website using PHPby flashbuilding28,616 views
1:46
How to create an E-commerce application with PHP, MySQL, Ajax and PayPalby sebastiansulinski4,443 views
- Loading more suggestions...
I have now checked all my code with urs and its all the same, I even took your coding files and uploaded them to my server to see if it worked, and it didn't.
It has worked earlier, but it seems like after I added a product image everything went bad.
But it seems like it would be a mySQL issue... can anyone please answer or direct me to a place where I can find out whats going wrong?
SawdyArts 2 weeks ago in playlist Favorite videos
@SawdyArts
Check that.... it still does what it did to begin with where it sends me out in the root/index.php, but every time I clear my cookies it works to get in, but as soon as I add a product it sends me back out again.
I even printed out my code and try to follow Adam's text and see if mine has a fault, but can't find any. I just want to move on, so can anyone please help me...?
SawdyArts 3 weeks ago in playlist Ecommerce Website Tutorial PHP MySQL Tutorial PayPal IPN
I guess I solved it... had to clear my cookies... anyway to not get this issue in the future?
SawdyArts 3 weeks ago in playlist Ecommerce Website Tutorial PHP MySQL Tutorial PayPal IPN
$existCount = mysql_num_rows($sql); // count the row nums
if ($existCount == 0) { // evaluate the count header("location: ../index.php"); exit();
}
?>
SawdyArts 3 weeks ago in playlist Ecommerce Website Tutorial PHP MySQL Tutorial PayPal IPN
<?php
session_start();
if(!isset($_SESSION["manager"])) { header("location: admin_login.php"); exit();
}
$managerID = preg_replace('#[^0-9]#i','',$_SESSION["id"]);
$manager = preg_replace('#[^A-Za-z0-9]#i','',$_SESSION["manager"]);
$password = preg_replace('#[^A-Za-z0-9]#i','',$_SESSION["password"]);
include "../storescripts/connect_to_mysql.php";
$sql = mysql_query("SELECT * FROM admin WHERE id='$managerID' AND username='$manager' AND password='$password' LIMIT 1");
SawdyArts 3 weeks ago in playlist Ecommerce Website Tutorial PHP MySQL Tutorial PayPal IPN
Thank you for a so far great tut!!
I got a bit of a issue, I was able to log in and had everything set-up so I could add files etc.
But all the sudden when I was moving around on the page it kicked me back out to the main index.php. even though I add the "storeadmin" folder to the address it still sends me back to root/index.php
Does anyone know where I added something that would send me out or if it's just the server going bananas?
SawdyArts 3 weeks ago in playlist Ecommerce Website Tutorial PHP MySQL Tutorial PayPal IPN
@blthlt ever heard of pause video ?
BlackRacen 1 month ago
What did you mean by "In Jesus Juice?"
Just curious, I thought that was a bit offensive but maybe it wasn't so what did you mean by that?
Thanks for your tutorials btw!
crazytuts0 1 month ago in playlist Ecommerce Website Tutorial PHP MySQL Tutorial PayPal IPN
How are you doing the copy/paste type thing. Do you have a macro type thing or what.
blthlt 1 month ago
Hello there, first of all thank you for this amazing series. I was wondering if anyone could help me out. I'm having problems with the code I keep getting this error when I try to add an item to the inventory
Unknown column 'product_name' in 'field list'
I'm sure it's going to be something really obvious, but I'm totally new and I've been trying for a few hours already. Thank you in advanced.
yaveson 3 months ago