Skip to content

Latest commit

 

History

History
54 lines (41 loc) · 1.5 KB

README.md

File metadata and controls

54 lines (41 loc) · 1.5 KB

PHPCrud-sample-data

Support PHPWine v1.2.09

Create Crud with Boostrap sample data

// SQL 
CREATE TABLE `crud` (

 `friend_id` bigint(20) UNSIGNED NOT NULL,
 `friend_name` varchar(255) NOT NULL,
 `friend_mobile` varchar(255) NOT NULL,
 `friend_email` varchar(255) NOT NULL

) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

ALTER TABLE `crud`
  ADD PRIMARY KEY (`friend_id`);
  
ALTER TABLE `crud`
  MODIFY `friend_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
COMMIT;
INSERT INTO `crud` (`friend_name`, `friend_mobile`, `friend_email`) VALUES
('Nikkie The Drummer'    , '999.999.999' , 'nikki@mail.com'),
('Marian The Base Guitar', '999.999.999' , 'marian@mail.com'),
('Japz The Song Leader'  , '999.999.999' , 'japz@mail.com'),
('Niel The All around'   , '999.999.999' , 'niel@mail.com');

Download PHPWine >
Download PHPCrud >

Article Link: https://nielsoffice197227997.wordpress.com/2022/03/05/phpcrud-sample-data-phpwine-v1-2-10/

Thanks To:

Github : To allow me to upload my PHPWine plugin Vanilla Flavour to repository
php.net : To oppurtunity Develop web application using corePHP - PHPFrameworks

Would you like me to treat a cake and coffee ?
Become a donor, Because with you! We can build more...

Donate:
GCash : +639650332900
Paypal account: syncdevprojects@gmail.com



Thanks and good luck!