Jump to content

Chris Evans

Member
  • Posts

    8
  • Joined

  • Last visited

Everything posted by Chris Evans

  1. Hello All, I love the killersites video's that I have so far watched. I need to learn about illustrator. Are killersites thinking of doing a tutorial about this software, or can anyone recommend a video package on a similar par to killersites packages? Thanks
  2. Too many video's, not enough time! Work is a constraint on my life!

  3. So Archie. I should enter this code u supplied as it covers the stock quantity function I need. Then add in some paypal ipn
  4. So Archie. I should enter this code u supplied as it covers the stock quantity function I need. Then add in some paypal ipn to check whether it sold. Hmmm. Il try but my coding experience is pretty minimal. Maybe I should watch through the php videos.
  5. To be honest, I dont really need the update and remove functionality just yet. Basically I have 1 of each of my products, so when it has been purchased, I want it to show the product with "currently unavailable"
  6. Thank you very much Arcadian, haven't read through it yet as I'm cooking tea. Looks like I've got my evenings work sorted and exactly what I'm after. If you dont ask, you don't get!
  7. Nice Eventually got it sorted! Any chance of updating the video collection so we can include a quantity item to the products, so when theyre all sold they come off!
  8. I did start with the user and password, although i dont think it showed how to set up a user and password is'root' the default username and password? where can i edit the username and password? Thanks
  9. Annoyed, just paid for 3 months on killer uni, not realising its only standard videos

    1. falkencreative

      falkencreative

      You can always email Stefan directly for support (stefan [at] killersites.com). I can't guarantee anything since I don't handle the support side of things, but you can potentially discuss upgrading with him.

  10. Annoyed, just paid for 3 months on killer uni, not realising its only standard videos

  11. Hello I have completed the videos for the PHP shopping cart with paypal. Everythings was fine. After following the 3 follow on videos for changing from XML to MySql i keep getting "Notice: Trying to get property of non-object in C:\wamp\www\vicki_evans\functions\functions.php on line 24" <?php /* DATABASE */ $server = 'localhost'; $db = 've-products'; $mysqli = new mysqli($server, $db); /* DEFINE GLOBALS */ define('PAYPAL_BUSINESS_VALUE' , 'seller_1309719804_biz@hotmail.com'); define('PAYPAL_FORM_URL','https://www.sandbox.paypal.com/cgi-bin/webscr'); /* DEFINE REFERENCES */ require_once 'templates.php'; require_once '../classes/shoppingcart.php'; //* FUNCTIONS */ session_start(); function get_products() { global $mysqli; $result = $mysqli->query("SELECT * FROM products"); 24 if ($result->num_rows > 0) Line 24 { $row_num = 0; while ($row = $result->fetch_object()) { $products[$row_num]['id'] = $row->id; $products[$row_num]['title'] = $row->title; $products[$row_num]['description'] = $row->description; $products[$row_num]['image'] = $row->image; $products[$row_num]['price'] = number_format($row->price,2); $row_num++; } return $products; } else { return FALSE; } } I have checked back through the videos and everything seems correct, any suggestions?
×
×
  • Create New...