{"id":863,"date":"2018-05-16T06:02:20","date_gmt":"2018-05-15T23:02:20","guid":{"rendered":"https:\/\/www.bagi2info.com\/?p=863"},"modified":"2022-09-11T14:12:44","modified_gmt":"2022-09-11T07:12:44","slug":"membuat-custom-form-feedback-di-joomla","status":"publish","type":"post","link":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/","title":{"rendered":"PHP: Creating Custom Feedback Forms in Joomla"},"content":{"rendered":"\r\n<figure class=\"wp-block-image\"><a href=\"https:\/\/www.bagi2info.com\/wp-content\/uploads\/2018\/05\/2018-05-16_09h02_26.png\"><img loading=\"lazy\" decoding=\"async\" width=\"488\" height=\"264\" class=\"wp-image-1182\" src=\"https:\/\/www.bagi2info.com\/wp-content\/uploads\/2018\/05\/2018-05-16_09h02_26.png\" alt=\"Form sample joomla custom\" srcset=\"https:\/\/www.bagi2info.com\/wp-content\/uploads\/2018\/05\/2018-05-16_09h02_26.png 488w, https:\/\/www.bagi2info.com\/wp-content\/uploads\/2018\/05\/2018-05-16_09h02_26-300x162.png 300w\" sizes=\"auto, (max-width: 488px) 100vw, 488px\" \/><\/a><\/figure>\r\n\r\n\r\n\r\n\r\nThere are various components provided by Joomla CMS to create forms, one of which is Fabric, but sometimes we also want to create our own custom forms for our own reasons, the form will be made from an article which then the final action is handled by the php file that we created.\r\n\r\n\r\n\r\n\r\n\r\nHere&#8217;s an easy way to create a custom feedback form in Joomla:\r\n\r\n\r\n\r\n\r\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_85 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><a href=\"#\" class=\"ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle\" aria-label=\"Toggle Table of Content\"><span class=\"ez-toc-js-icon-con\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/span><\/a><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#1_Create_table_di_mysql\" >1. Create table di mysql<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#2_Create_a_new_article_with_the_following_html\" >2. Create a new article with the following html<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#3_Create_a_new_file_with_the_name_insertfeedbackphp_and_place_it_in_the_root_of_the_joomla_instance\" >3. Create a new file with the name insertfeedback.php and place it in the root of the joomla instance<\/a><\/li><\/ul><\/nav><\/div>\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"1_Create_table_di_mysql\"><\/span>1. Create table di mysql<span class=\"ez-toc-section-end\"><\/span><\/h3>\r\n\r\n\r\n\r\n\r\nRun the following SQL query command after connecting the mysql database, the command below to create a feedback table, the storage of our feedback form.\r\n\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code class=\"language-sql line-numbers\" lang=\"sql\">CREATE TABLE `feedback` (\r\n `id` int(11) NOT NULL,\r\n `title` varchar(255),\r\n `description` text,\r\n `email` varchar(255)\r\n)<\/code><\/pre>\r\n\r\n\r\n\r\n<div class=\"wp-block-spacer\" style=\"height: 100px;\" aria-hidden=\"true\">&nbsp;<\/div>\r\n\r\n\r\n\r\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"2_Create_a_new_article_with_the_following_html\"><\/span>2. Create a new article with the following html<span class=\"ez-toc-section-end\"><\/span><\/h3>\r\n\r\n\r\n\r\n\r\nThe command below is a regular html command to create a form display, such as headers, input fields title, description, and email.\r\n\r\n\r\n\r\n\r\n\r\nThe action attribute in the form tag can be adjusted according to the location of the php file that we created.\r\n\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code class=\"language-markup line-numbers\" lang=\"markup\">&lt;form action=\"..\/insertfeedback.php\" method=\"POST\"&gt;\r\n  &lt;h2&gt;Submit your suggestions&lt;\/h2&gt;\r\n  &lt;table&gt;\r\n    &lt;tbody&gt;\r\n      &lt;tr&gt;\r\n        &lt;td&gt;Title&lt;\/td&gt;\r\n        &lt;td&gt;\r\n          &lt;input id=\"title\" style=\"width: 300px\" name=\"title\" type=\"text\" \/&gt;\r\n        &lt;\/td&gt;\r\n      &lt;\/tr&gt;\r\n      &lt;tr&gt;\r\n        &lt;td&gt;Description&lt;\/td&gt;\r\n        &lt;td&gt;\r\n          &lt;textarea\r\n            id=\"description\"\r\n            style=\"width: 350px\"\r\n            name=\"description\"\r\n            rows=\"5\"\r\n          &gt;&lt;\/textarea&gt;\r\n        &lt;\/td&gt;\r\n      &lt;\/tr&gt;\r\n      &lt;tr&gt;\r\n        &lt;td&gt;Email&lt;\/td&gt;\r\n        &lt;td&gt;\r\n          &lt;input id=\"email\" style=\"width: 300px\" name=\"email\" type=\"text\" \/&gt;\r\n        &lt;\/td&gt;\r\n      &lt;\/tr&gt;\r\n      &lt;tr&gt;\r\n        &lt;td colspan=\"2\"&gt;\r\n          &lt;input name=\"submit\" type=\"submit\" value=\"Submit\" \/&gt;\r\n        &lt;\/td&gt;\r\n      &lt;\/tr&gt;\r\n    &lt;\/tbody&gt;\r\n  &lt;\/table&gt;\r\n&lt;\/form&gt;\r\n<\/code><\/pre>\r\n\r\n\r\n\r\n<div class=\"wp-block-spacer\" style=\"height: 100px;\" aria-hidden=\"true\">&nbsp;<\/div>\r\n\r\n\r\n\r\n<h3 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"3_Create_a_new_file_with_the_name_insertfeedbackphp_and_place_it_in_the_root_of_the_joomla_instance\"><\/span>3. Create a new file with the name insertfeedback.php and place it in the root of the joomla instance<span class=\"ez-toc-section-end\"><\/span><\/h3>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code class=\"language-php line-numbers\" lang=\"php\">&lt;?php\r\n\r\nini_set('display_errors', true);\r\n\/\/error_reporting(E_ALL);\r\ndefine('_JEXEC', 1);\r\ndefine('JPATH_BASE', dirname(__FILE__));\r\ndefine('DS', DIRECTORY_SEPARATOR);\r\n\r\nrequire_once(JPATH_BASE . DS . 'includes' . DS . 'defines.php');\r\nrequire_once(JPATH_BASE . DS . 'includes' . DS . 'framework.php');\r\n\r\n\/*To use Joomla's database class*\/\r\nrequire_once(JPATH_BASE . DS . 'libraries' . DS . 'joomla' . DS . 'platform.php');\r\n\r\n\/\/ untuk joomla lama bisa mengganti file dengan factory.php\r\n\/\/require_once (JPATH_BASE.DS.'libraries'.DS.'joomla'.DS.'platform.php');\r\n\r\n\r\n$db = JFactory::getDBO();\r\n$session = JFactory::getSession();\r\n$title = JRequest::getVar(\"title\");\r\n$description = JRequest::getVar(\"description\");\r\n$email = JRequest::getVar(\"email\");\r\n\r\n$sql = \"INSERT INTO feedback (title, description, email)\r\nVALUES (\" . $db-&gt;quote($title) . \", \" . $db-&gt;quote($description) . \", \" . $db-&gt;quote($email) . \")\";\r\n\r\n$db-&gt;setQuery($sql);\r\n$db-&gt;query();\r\n\r\n\/\/ print message&nbsp;\r\necho \"Your feedback has been submitted\";\r\n\/\/ or refers to other page\/article\r\n\/\/header('Location: http:\/\/www.google.com');\r\n\/\/exit;\r\n<\/code><\/pre>\r\n\r\n\r\n\r\n\r\nThe above command will handle the input from the form and save it into the feedback table that we created.\r\n\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code class=\"\">$db = JFactory::getDBO();  \/\/ membuat koneksi ke database<\/code><\/pre>\r\n\r\n\r\n\r\n\r\n","protected":false},"excerpt":{"rendered":"<p>There are various components provided by Joomla CMS to create forms, one of which is Fabric, but sometimes we also want to create our own custom forms for our own reasons, the form will&#46;&#46;&#46;<\/p>\n","protected":false},"author":1,"featured_media":1182,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[71,82,62,7],"class_list":["post-863","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-komputer","tag-joomla","tag-mysql","tag-php","tag-sql"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Membuat Custom Form Feedback di CMS Joomla, menggunakan artikel sebagai form, file php yang dibuat langsung, dan menyimpan inputan ke dalam tabel\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"webmaster\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Bagi2info.com - Tips dan Trik Komputer, Tutorial Pemrograman, SQL, PHP, React Native - Expo\" \/>\n\t\t<meta property=\"og:type\" content=\"activity\" \/>\n\t\t<meta property=\"og:title\" content=\"PHP: Creating Custom Feedback Forms in Joomla\" \/>\n\t\t<meta property=\"og:description\" content=\"Membuat Custom Form Feedback di CMS Joomla, menggunakan artikel sebagai form, file php yang dibuat langsung, dan menyimpan inputan ke dalam tabel\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/www.bagi2info.com\/wp-content\/uploads\/2017\/10\/coollogo_com-12072770.png?fit=28164&#038;ssl=1\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/i0.wp.com\/www.bagi2info.com\/wp-content\/uploads\/2017\/10\/coollogo_com-12072770.png?fit=28164&#038;ssl=1\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@bagi2infocom\" \/>\n\t\t<meta name=\"twitter:title\" content=\"PHP: Creating Custom Feedback Forms in Joomla\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Membuat Custom Form Feedback di CMS Joomla, menggunakan artikel sebagai form, file php yang dibuat langsung, dan menyimpan inputan ke dalam tabel\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@bagi2infocom\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/i0.wp.com\/www.bagi2info.com\/wp-content\/uploads\/2017\/10\/coollogo_com-12072770.png?fit=28164&amp;ssl=1\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/php-creating-custom-feedback-forms-in-joomla\\\/#blogposting\",\"name\":\"PHP: Creating Custom Feedback Forms in Joomla\",\"headline\":\"PHP: Creating Custom Feedback Forms in Joomla\",\"author\":{\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.bagi2info.com\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/2018-05-16_09h02_26.png\",\"width\":488,\"height\":264,\"caption\":\"Form sample joomla custom\"},\"datePublished\":\"2018-05-16T06:02:20+07:00\",\"dateModified\":\"2022-09-11T14:12:44+07:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/php-creating-custom-feedback-forms-in-joomla\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/php-creating-custom-feedback-forms-in-joomla\\\/#webpage\"},\"articleSection\":\"Komputer, joomla, mysql, php, sql\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/php-creating-custom-feedback-forms-in-joomla\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/category\\\/komputer\\\/#listItem\",\"name\":\"Komputer\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/category\\\/komputer\\\/#listItem\",\"position\":2,\"name\":\"Komputer\",\"item\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/category\\\/komputer\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/php-creating-custom-feedback-forms-in-joomla\\\/#listItem\",\"name\":\"PHP: Creating Custom Feedback Forms in Joomla\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/php-creating-custom-feedback-forms-in-joomla\\\/#listItem\",\"position\":3,\"name\":\"PHP: Creating Custom Feedback Forms in Joomla\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/category\\\/komputer\\\/#listItem\",\"name\":\"Komputer\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/#person\",\"name\":\"webmaster\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/php-creating-custom-feedback-forms-in-joomla\\\/#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/38da1efad6745212e2c3b76c8d8e72f69844b6451e55a9c219cdb2bb8b8901ef?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"webmaster\"},\"sameAs\":[\"https:\\\/\\\/twitter.com\\\/bagi2infocom\",\"https:\\\/\\\/www.instagram.com\\\/bagi2infocom\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/author\\\/admin\\\/#author\",\"url\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/author\\\/admin\\\/\",\"name\":\"webmaster\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/php-creating-custom-feedback-forms-in-joomla\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/38da1efad6745212e2c3b76c8d8e72f69844b6451e55a9c219cdb2bb8b8901ef?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"webmaster\"},\"sameAs\":[\"https:\\\/\\\/twitter.com\\\/bagi2infocom\",\"https:\\\/\\\/www.instagram.com\\\/bagi2infocom\"]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/php-creating-custom-feedback-forms-in-joomla\\\/#webpage\",\"url\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/php-creating-custom-feedback-forms-in-joomla\\\/\",\"name\":\"PHP: Creating Custom Feedback Forms in Joomla\",\"description\":\"Membuat Custom Form Feedback di CMS Joomla, menggunakan artikel sebagai form, file php yang dibuat langsung, dan menyimpan inputan ke dalam tabel\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/php-creating-custom-feedback-forms-in-joomla\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/author\\\/admin\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.bagi2info.com\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/2018-05-16_09h02_26.png\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/php-creating-custom-feedback-forms-in-joomla\\\/#mainImage\",\"width\":488,\"height\":264,\"caption\":\"Form sample joomla custom\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/php-creating-custom-feedback-forms-in-joomla\\\/#mainImage\"},\"datePublished\":\"2018-05-16T06:02:20+07:00\",\"dateModified\":\"2022-09-11T14:12:44+07:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/\",\"name\":\"Bagi2info.com\",\"description\":\"Tips dan Trik Komputer, Tutorial Pemrograman, SQL, PHP, React Native - Expo\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.bagi2info.com\\\/en\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"PHP: Creating Custom Feedback Forms in Joomla","description":"Membuat Custom Form Feedback di CMS Joomla, menggunakan artikel sebagai form, file php yang dibuat langsung, dan menyimpan inputan ke dalam tabel","canonical_url":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#blogposting","name":"PHP: Creating Custom Feedback Forms in Joomla","headline":"PHP: Creating Custom Feedback Forms in Joomla","author":{"@id":"https:\/\/www.bagi2info.com\/en\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/www.bagi2info.com\/en\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/www.bagi2info.com\/wp-content\/uploads\/2018\/05\/2018-05-16_09h02_26.png","width":488,"height":264,"caption":"Form sample joomla custom"},"datePublished":"2018-05-16T06:02:20+07:00","dateModified":"2022-09-11T14:12:44+07:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#webpage"},"isPartOf":{"@id":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#webpage"},"articleSection":"Komputer, joomla, mysql, php, sql"},{"@type":"BreadcrumbList","@id":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.bagi2info.com\/en\/#listItem","position":1,"name":"Home","item":"https:\/\/www.bagi2info.com\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.bagi2info.com\/en\/category\/komputer\/#listItem","name":"Komputer"}},{"@type":"ListItem","@id":"https:\/\/www.bagi2info.com\/en\/category\/komputer\/#listItem","position":2,"name":"Komputer","item":"https:\/\/www.bagi2info.com\/en\/category\/komputer\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#listItem","name":"PHP: Creating Custom Feedback Forms in Joomla"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.bagi2info.com\/en\/#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#listItem","position":3,"name":"PHP: Creating Custom Feedback Forms in Joomla","previousItem":{"@type":"ListItem","@id":"https:\/\/www.bagi2info.com\/en\/category\/komputer\/#listItem","name":"Komputer"}}]},{"@type":"Person","@id":"https:\/\/www.bagi2info.com\/en\/#person","name":"webmaster","image":{"@type":"ImageObject","@id":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/38da1efad6745212e2c3b76c8d8e72f69844b6451e55a9c219cdb2bb8b8901ef?s=96&d=mm&r=g","width":96,"height":96,"caption":"webmaster"},"sameAs":["https:\/\/twitter.com\/bagi2infocom","https:\/\/www.instagram.com\/bagi2infocom"]},{"@type":"Person","@id":"https:\/\/www.bagi2info.com\/en\/author\/admin\/#author","url":"https:\/\/www.bagi2info.com\/en\/author\/admin\/","name":"webmaster","image":{"@type":"ImageObject","@id":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/38da1efad6745212e2c3b76c8d8e72f69844b6451e55a9c219cdb2bb8b8901ef?s=96&d=mm&r=g","width":96,"height":96,"caption":"webmaster"},"sameAs":["https:\/\/twitter.com\/bagi2infocom","https:\/\/www.instagram.com\/bagi2infocom"]},{"@type":"WebPage","@id":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#webpage","url":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/","name":"PHP: Creating Custom Feedback Forms in Joomla","description":"Membuat Custom Form Feedback di CMS Joomla, menggunakan artikel sebagai form, file php yang dibuat langsung, dan menyimpan inputan ke dalam tabel","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.bagi2info.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#breadcrumblist"},"author":{"@id":"https:\/\/www.bagi2info.com\/en\/author\/admin\/#author"},"creator":{"@id":"https:\/\/www.bagi2info.com\/en\/author\/admin\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.bagi2info.com\/wp-content\/uploads\/2018\/05\/2018-05-16_09h02_26.png","@id":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#mainImage","width":488,"height":264,"caption":"Form sample joomla custom"},"primaryImageOfPage":{"@id":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/#mainImage"},"datePublished":"2018-05-16T06:02:20+07:00","dateModified":"2022-09-11T14:12:44+07:00"},{"@type":"WebSite","@id":"https:\/\/www.bagi2info.com\/en\/#website","url":"https:\/\/www.bagi2info.com\/en\/","name":"Bagi2info.com","description":"Tips dan Trik Komputer, Tutorial Pemrograman, SQL, PHP, React Native - Expo","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.bagi2info.com\/en\/#person"}}]},"og:locale":"en_US","og:site_name":"Bagi2info.com - Tips dan Trik Komputer, Tutorial Pemrograman, SQL, PHP, React Native - Expo","og:type":"activity","og:title":"PHP: Creating Custom Feedback Forms in Joomla","og:description":"Membuat Custom Form Feedback di CMS Joomla, menggunakan artikel sebagai form, file php yang dibuat langsung, dan menyimpan inputan ke dalam tabel","og:url":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/","og:image":"https:\/\/i0.wp.com\/www.bagi2info.com\/wp-content\/uploads\/2017\/10\/coollogo_com-12072770.png?fit=28164&#038;ssl=1","og:image:secure_url":"https:\/\/i0.wp.com\/www.bagi2info.com\/wp-content\/uploads\/2017\/10\/coollogo_com-12072770.png?fit=28164&#038;ssl=1","twitter:card":"summary","twitter:site":"@bagi2infocom","twitter:title":"PHP: Creating Custom Feedback Forms in Joomla","twitter:description":"Membuat Custom Form Feedback di CMS Joomla, menggunakan artikel sebagai form, file php yang dibuat langsung, dan menyimpan inputan ke dalam tabel","twitter:creator":"@bagi2infocom","twitter:image":"https:\/\/i0.wp.com\/www.bagi2info.com\/wp-content\/uploads\/2017\/10\/coollogo_com-12072770.png?fit=28164&ssl=1"},"aioseo_meta_data":{"post_id":"863","title":null,"description":"Membuat Custom Form Feedback di CMS Joomla, menggunakan artikel sebagai form, file php yang dibuat langsung, dan menyimpan inputan ke dalam tabel","keywords":[{"label":"Custom","value":"Custom"},{"label":"form","value":"form"},{"label":"feedback","value":"feedback"},{"label":"joomla","value":"joomla"},{"label":"php","value":"php"}],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"activity","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"Article","defaultPostTypeGraph":""},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2022-05-12 09:33:18","updated":"2025-06-04 06:44:55","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.bagi2info.com\/en\/\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.bagi2info.com\/en\/category\/komputer\/\" title=\"Komputer\">Komputer<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tPHP: Creating Custom Feedback Forms in Joomla\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.bagi2info.com\/en\/"},{"label":"Komputer","link":"https:\/\/www.bagi2info.com\/en\/category\/komputer\/"},{"label":"PHP: Creating Custom Feedback Forms in Joomla","link":"https:\/\/www.bagi2info.com\/en\/php-creating-custom-feedback-forms-in-joomla\/"}],"_links":{"self":[{"href":"https:\/\/www.bagi2info.com\/en\/wp-json\/wp\/v2\/posts\/863","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bagi2info.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bagi2info.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bagi2info.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bagi2info.com\/en\/wp-json\/wp\/v2\/comments?post=863"}],"version-history":[{"count":0,"href":"https:\/\/www.bagi2info.com\/en\/wp-json\/wp\/v2\/posts\/863\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.bagi2info.com\/en\/wp-json\/wp\/v2\/media\/1182"}],"wp:attachment":[{"href":"https:\/\/www.bagi2info.com\/en\/wp-json\/wp\/v2\/media?parent=863"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bagi2info.com\/en\/wp-json\/wp\/v2\/categories?post=863"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bagi2info.com\/en\/wp-json\/wp\/v2\/tags?post=863"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}