php

I am having a problem with getting the value of an auto incremented column=reservation_no on table reserves

Submitted by van2x on
function add_new_reservation($reservation_no,$user_id,$date_from,$date_to,$location,$comments,$items = array()) { $user_id=$this->session->userdata('user_id'); $data=array( 'user_id'=> $user_id, 'date_from'=>$date_from, 'date_to'=> $date_to, 'location'=> $location, 'comments'=>$comments );

Import Daily Orders From Magento

Submitted by JanzellJurilla on
Hi People, I'm sharing a miscellaneous script that allow Magento Store Owner to dump their orders from Magento Database and forward it to their Fulfillment Center via Email. Learn more about this snippets. Things you need to change in the code: #credentials details $server_host = 'your host'; $sql_username = 'your username'; $sql_password = 'your password';

Scheduling System

Submitted by may ann on
This is a system called Online Scheduling System made as one of the requirements in school.. uses Sessions for logging in and out [user authentication]. Has Add, View, Edit, delete information related to scheduling such as room, subjects, course, teacher.. etc.. Has a functionality to add, view and delete schedules.