Results 1 to 2 of 2

Thread: I need a lot of help right here with creating a cart. I'm halfway there...I THINK

  1. #1
    Join Date
    Oct 2010
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default I need a lot of help right here with creating a cart. I'm halfway there...I THINK

    Hello I'm in quite a grind right now I have 6 hours to come up with a final cart or else I'm fired and I think i'm screwed right here. I used Javascript Ajax and PHP to have a dynamically selecting course drop down menu. The client requested it and of course I didn't think about how I was going to implement it. So now I'm at the deadline and I am asking anyone to please help me I have the courses with location and what have you.
    That's my database structure and the dropdown is located at. If anyone can please help me and give me atleast the steps to go around implementing one I would do anything!

    http://theuglypixel.com/WSLTEST/index.php?classregister

    Code:
    DROP TABLE IF EXISTS `coursesTbl`;
    
    CREATE TABLE `coursesTbl` (
      `courseID` int(30) NOT NULL,
      `courseName` varchar(50) NOT NULL,
      `courseLocation` varchar(50) NOT NULL,
      `courseDate` varchar(50) NOT NULL,
      PRIMARY KEY (`courseID`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

  2. #2
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    What isn't working or needs to be done?
    Corrections to my coding/thoughts welcome.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •