Generator Fulfilling PHP Requirements
← Back to selfgrowth.space
CREATE TABLE `about` ( `id` int(11) NOT NULL AUTO_INCREMENT, `image` varchar(70) DEFAULT NULL, `description` text DEFAULT NULL, `name` varchar(40) DEFAULT NULL, `designation` varchar(30) DEFAULT NULL, `experience` int(3) DEFAULT NULL, `birthdate_and_place` varchar(40) NOT NULL, `education` varchar(70) NOT NULL, `activities` text NOT NULL, `service` varchar(70) NOT NULL, `awards_and_achievements` text NOT NULL, `youtube_video_embed_link` varchar(500) NOT NULL, `updated_at` varchar(150) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4
Insert Query
Update Query
Generate Execute Statement with Bind Parameters(Insert)
Generate Execute Statement with Individual Bind Parameters(Insert)
Generate Execute Statement with bindParam(Update)
Generate Bootstrap Form Inputs