Introduction
Function 7 & Grid is CRUD and Fuction
Function 7 & Grid is MIT Licence
In Function 7 & Grid you can take a look and learn how to work with CRUD functions. I also made an example F 7 & Grid - CHAT & CMS where you can see the functionality of F 7 & Grid.
In addition to this, I created a reporting system and a chat system.
Installation
Installation is very simple, download the example you want and insert it into a web folder. You must first create a database in PHPMyAdmin and copy the database code below the example. Of course you also need to set up a connection to the base.
Conection example
<?php
//Server host
$server = "localhost";
//Database user
$user = "root";
//Database passwor
$passwor = "root";
//Database name
$name = "test";
//Conection
$conection = mysqli_connect($server_baze, $korisnik_baze, $lozinka_baze, $ime_baze);
?>
Database example
CREATE TABLE `user` (
`id` int(20) NOT NULL,
`name` varchar(200) NOT NULL,
`email` varchar(200) NOT NULL,
`year` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- PRIMARY_KEY for table `user`
ALTER TABLE `osoba`
ADD PRIMARY KEY (`id`);
-- AUTO_INCREMENT for table `user`
ALTER TABLE `user`
MODIFY `id` int(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33;
Why Function 7? Because Function 7 consists of 7 parts, which are: