Latest web development techniques – PULZ 2015

These are the files for the workshop I conducted for PULZ 2015, organized by Ananda College ICT Society, Sri Lanka’s biggest school based ICT convention, on 24th May 2015.

Project files

Click on it to download.

Database

(use PHPMyAdmin to run this SQL)

-- Database: `anandaCollege`

-- Table structure for table `user`
--
CREATE TABLE IF NOT EXISTS `user` (
`id` int(11) NOT NULL,
  `username` varchar(20) NOT NULL,
  `password` varchar(10) NOT NULL,
  `email` varchar(30) NOT NULL
)AUTO_INCREMENT=3;

--
-- Dumping data for table `user`
--
INSERT INTO `user` (`id`, `username`, `password`, `email`) VALUES
(1, 'nimal', '123', 'nimal@gmail.com'),
(2, 'sunil', '123', 'sunil@gmail.com');


--
-- Indexes for table `user`
--
ALTER TABLE `user` ADD PRIMARY KEY (`id`);

--
-- AUTO_INCREMENT for table `user`
--
ALTER TABLE `user` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;

 

Download links:

These are the main tools I used for the demo.

Photos from the event: http://www.xtreamyouth.com/events/school/ananda-college-colombo/pulz-15

About the event: http://readme.lk/pulz-15-average-day/

Share