{"id":549,"date":"2017-01-13T14:43:30","date_gmt":"2017-01-13T07:43:30","guid":{"rendered":"http:\/\/www.yellowweb.id\/blog\/?p=549"},"modified":"2017-01-13T14:43:30","modified_gmt":"2017-01-13T07:43:30","slug":"multiple-delete-php","status":"publish","type":"post","link":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/","title":{"rendered":"Multiple Delete PHP"},"content":{"rendered":"<p>Tutorial multiple delete dengan menggunakan PHP, ya untuk artikel kali ini kita akan mencoba tutorial bagaimana <span style=\"color: #0000ff;\">cara melakukan hapus data secara keseluruhan<\/span>. Akan sangat berguna jika kita memiliki jumlah data yang banyak, artinya cukup merepotkan ketika kita menghapus data satu persatu.<br \/>\n<!--more--><br \/>\nUntuk tutorial multiple delete kali ini kita akan\u00a0 menggunakan checkbox untuk menceklis dalam menentukan pilihan.<br \/>\nBaik langsung saja kita praktekkan,&#8230;<\/p>\n<p>buat file dengan nama <strong>data.php<\/strong><\/p>\n<pre class=\"lang:default decode:true \">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n\t&lt;title&gt;Multiple Delete | YELLOWWEB.ID&lt;\/title&gt;\r\n\t&lt;style type=\"text\/css\"&gt;\r\n\t\ttable{\r\n\t\t\tborder-collapse: collapse;\r\n\t\t}\r\n\r\n\t\ttable th, table td{\r\n\t\t\tpadding: 10px 10px; \r\n\t\t}\r\n\t&lt;\/style&gt;\r\n\r\n&lt;\/head&gt;\r\n&lt;body&gt; \r\n\t&lt;form action=\"hapus_student.php\" method=\"post\"&gt;\t\t\r\n\t\t&lt;table border=\"1\"&gt;\r\n\t\t\t&lt;tr&gt;\r\n\t\t\t\t&lt;th&gt;No&lt;\/th&gt;\r\n\t\t\t\t&lt;td&gt;ID&lt;\/td&gt;\r\n\t\t\t\t&lt;th&gt;Nama Siswa&lt;\/th&gt;\r\n\t\t\t\t&lt;th&gt;Pilih&lt;\/th&gt;\r\n\t\t\t&lt;\/tr&gt;\r\n\t\t\t&lt;?php \r\n\t\t\tinclude \"koneksi.php\";\r\n\t\t\t$sql_query = mysql_query(\"SELECT * FROM biodata ORDER BY id_nama DESC\");\r\n\t\t\t$no = 1;\r\n\t\t\twhile($data = mysql_fetch_array($sql_query)){\r\n\t\t\t?&gt;\r\n\t\t\t&lt;tr&gt;\r\n\t\t\t\t&lt;td&gt;&lt;?php echo $no++; ?&gt;&lt;\/td&gt;\r\n\t\t\t\t&lt;td&gt;&lt;?php echo $data['id_nama']; ?&gt;&lt;\/td&gt;\r\n\t\t\t\t&lt;td&gt;&lt;?php echo $data['nama_siswa'];?&gt;&lt;\/td&gt;\t\t\r\n\t\t\t\t&lt;td&gt;&lt;input type=\"checkbox\" name=\"pilih[]\" value=\"&lt;?php echo $data['id_nama']; ?&gt;\"&gt;&lt;\/td&gt;\r\n\t\t\t&lt;?php } ?&gt;\r\n\t\t\t\t&lt;tr&gt;\r\n\t\t\t\t\t&lt;td colspan=\"4\" align=\"center\"&gt;&lt;input type=\"submit\" name=\"hapus\" value=\"Hapus\"&gt;&lt;\/td&gt;\r\n\t\t\t\t&lt;\/tr&gt;\r\n\t\t\t&lt;\/tr&gt;\r\n\t\t&lt;\/table&gt;\r\n\t\t\r\n\t&lt;\/form&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>Berikutnya file <strong>koneksi.php<\/strong><\/p>\n<pre class=\"lang:default decode:true \">&lt;?php\r\n\t$server = \"localhost\";\r\n\t$user = \"root\";\r\n\t$pass = \"\";\r\n\t$db = \"db_multiple\";\r\n\r\n\t$pilih_koneksi = mysql_connect($server,$user,$pass) or die (mysql_error());\r\n\t$pilih_db = mysql_select_db($db, $pilih_koneksi) or die (mysql_error());\r\n\r\n?&gt;<\/pre>\n<p>File koneksinya silahkan disesuaikan dengan database yang teman-teman gunakan \ud83d\ude42<\/p>\n<p>Untuk file proses hapusnya kita akan membuat file tersendiri, dengan nama <strong>hapus_student.php<\/strong><\/p>\n<pre class=\"lang:default decode:true \">&lt;?php \r\n\tinclude 'koneksi.php';\r\n\t$hps = $_POST['pilih'];\r\n\t$jumlah_diceklis = count($hps);\r\n\r\n\tfor($x=0;$x&lt;$jumlah_diceklis;$x++){\r\n\t\tmysql_query(\"DELETE FROM biodata WHERE id_nama='$hps[$x]'\");\r\n\t}\r\n\r\n\theader(\"location:data.php\");\r\n?&gt;<\/pre>\n<p>Jangan lupa buat databasenya \ud83d\ude42<\/p>\n<pre class=\"lang:default decode:true\">-- phpMyAdmin SQL Dump\r\n-- version 4.5.2\r\n-- http:\/\/www.phpmyadmin.net\r\n--\r\n-- Host: localhost\r\n-- Generation Time: Jan 13, 2017 at 08:32 AM\r\n-- Server version: 10.1.16-MariaDB\r\n-- PHP Version: 5.6.24\r\n\r\nSET SQL_MODE = \"NO_AUTO_VALUE_ON_ZERO\";\r\nSET time_zone = \"+00:00\";\r\n\r\n\r\n\/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT *\/;\r\n\/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS *\/;\r\n\/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION *\/;\r\n\/*!40101 SET NAMES utf8mb4 *\/;\r\n\r\n--\r\n-- Database: `db_multiple`\r\n--\r\n\r\n-- --------------------------------------------------------\r\n\r\n--\r\n-- Table structure for table `biodata`\r\n--\r\n\r\nCREATE TABLE `biodata` (\r\n  `id_nama` int(5) NOT NULL,\r\n  `nama_siswa` varchar(100) NOT NULL\r\n) ENGINE=InnoDB DEFAULT CHARSET=latin1;\r\n\r\n--\r\n-- Dumping data for table `biodata`\r\n--\r\n\r\nINSERT INTO `biodata` (`id_nama`, `nama_siswa`) VALUES\r\n(2, 'Alpacino'),\r\n(3, 'John Travolta'),\r\n(4, 'Frank Zagarino'),\r\n(5, 'Ani'),\r\n(6, 'Budi');\r\n\r\n--\r\n-- Indexes for dumped tables\r\n--\r\n\r\n--\r\n-- Indexes for table `biodata`\r\n--\r\nALTER TABLE `biodata`\r\n  ADD PRIMARY KEY (`id_nama`);\r\n\r\n--\r\n-- AUTO_INCREMENT for dumped tables\r\n--\r\n\r\n--\r\n-- AUTO_INCREMENT for table `biodata`\r\n--\r\nALTER TABLE `biodata`\r\n  MODIFY `id_nama` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;\r\n\/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT *\/;\r\n\/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS *\/;\r\n\/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION *\/;\r\n<\/pre>\n<p>Selamat mencoba \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Tutorial multiple delete dengan menggunakan PHP, ya untuk artikel kali ini kita akan mencoba tutorial bagaimana cara melakukan hapus data secara keseluruhan. Akan sangat berguna jika kita memiliki jumlah data yang banyak, artinya cukup merepotkan ketika kita menghapus data satu persatu.<\/p>\n","protected":false},"author":1,"featured_media":554,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[110,11],"tags":[294,295,293,88],"class_list":["post-549","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php","category-tutorial","tag-hapus","tag-multiple","tag-multiple-delete","tag-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Multiple Delete PHP - YELLOWWEB.ID<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Multiple Delete PHP - YELLOWWEB.ID\" \/>\n<meta property=\"og:description\" content=\"Tutorial multiple delete dengan menggunakan PHP, ya untuk artikel kali ini kita akan mencoba tutorial bagaimana cara melakukan hapus data secara keseluruhan. Akan sangat berguna jika kita memiliki jumlah data yang banyak, artinya cukup merepotkan ketika kita menghapus data satu persatu.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/\" \/>\n<meta property=\"og:site_name\" content=\"YELLOWWEB.ID\" \/>\n<meta property=\"article:published_time\" content=\"2017-01-13T07:43:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/www.yellowweb.id\/blog\/wp-content\/uploads\/2017\/01\/Screen-Shot-2017-01-13-at-2.27.55-PM.png?fit=1440%2C900&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"1440\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"yellowweb\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"yellowweb\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/multiple-delete-php\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/multiple-delete-php\\\/\"},\"author\":{\"name\":\"yellowweb\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"headline\":\"Multiple Delete PHP\",\"datePublished\":\"2017-01-13T07:43:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/multiple-delete-php\\\/\"},\"wordCount\":103,\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/multiple-delete-php\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/01\\\/Screen-Shot-2017-01-13-at-2.27.55-PM.png\",\"keywords\":[\"hapus\",\"multiple\",\"multiple delete\",\"php\"],\"articleSection\":[\"PHP\",\"Tutorial\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/multiple-delete-php\\\/\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/multiple-delete-php\\\/\",\"name\":\"Multiple Delete PHP - YELLOWWEB.ID\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/multiple-delete-php\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/multiple-delete-php\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/01\\\/Screen-Shot-2017-01-13-at-2.27.55-PM.png\",\"datePublished\":\"2017-01-13T07:43:30+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/multiple-delete-php\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/multiple-delete-php\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/multiple-delete-php\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/01\\\/Screen-Shot-2017-01-13-at-2.27.55-PM.png\",\"contentUrl\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/01\\\/Screen-Shot-2017-01-13-at-2.27.55-PM.png\",\"width\":1440,\"height\":900,\"caption\":\"Tampilan Data\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/multiple-delete-php\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Multiple Delete PHP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/\",\"name\":\"YELLOWWEB.ID\",\"description\":\"Kursus Web Design | Kursus Web Programming | Mobile Web Apps | Digital Marketing\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/#\\\/schema\\\/person\\\/75188044e080844724e381ab6a5b9829\",\"name\":\"yellowweb\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g\",\"caption\":\"yellowweb\"},\"sameAs\":[\"https:\\\/\\\/www.yellowweb.id\"],\"url\":\"https:\\\/\\\/www.yellowweb.id\\\/blog\\\/author\\\/yellowweb\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Multiple Delete PHP - YELLOWWEB.ID","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/","og_locale":"en_GB","og_type":"article","og_title":"Multiple Delete PHP - YELLOWWEB.ID","og_description":"Tutorial multiple delete dengan menggunakan PHP, ya untuk artikel kali ini kita akan mencoba tutorial bagaimana cara melakukan hapus data secara keseluruhan. Akan sangat berguna jika kita memiliki jumlah data yang banyak, artinya cukup merepotkan ketika kita menghapus data satu persatu.","og_url":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/","og_site_name":"YELLOWWEB.ID","article_published_time":"2017-01-13T07:43:30+00:00","og_image":[{"width":1440,"height":900,"url":"https:\/\/i0.wp.com\/www.yellowweb.id\/blog\/wp-content\/uploads\/2017\/01\/Screen-Shot-2017-01-13-at-2.27.55-PM.png?fit=1440%2C900&ssl=1","type":"image\/png"}],"author":"yellowweb","twitter_card":"summary_large_image","twitter_misc":{"Written by":"yellowweb","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/#article","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/"},"author":{"name":"yellowweb","@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"headline":"Multiple Delete PHP","datePublished":"2017-01-13T07:43:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/"},"wordCount":103,"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/#primaryimage"},"thumbnailUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2017\/01\/Screen-Shot-2017-01-13-at-2.27.55-PM.png","keywords":["hapus","multiple","multiple delete","php"],"articleSection":["PHP","Tutorial"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/","url":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/","name":"Multiple Delete PHP - YELLOWWEB.ID","isPartOf":{"@id":"https:\/\/www.yellowweb.id\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/#primaryimage"},"image":{"@id":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/#primaryimage"},"thumbnailUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2017\/01\/Screen-Shot-2017-01-13-at-2.27.55-PM.png","datePublished":"2017-01-13T07:43:30+00:00","author":{"@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829"},"breadcrumb":{"@id":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/#primaryimage","url":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2017\/01\/Screen-Shot-2017-01-13-at-2.27.55-PM.png","contentUrl":"https:\/\/www.yellowweb.id\/blog\/wp-content\/uploads\/2017\/01\/Screen-Shot-2017-01-13-at-2.27.55-PM.png","width":1440,"height":900,"caption":"Tampilan Data"},{"@type":"BreadcrumbList","@id":"https:\/\/www.yellowweb.id\/blog\/multiple-delete-php\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.yellowweb.id\/blog\/"},{"@type":"ListItem","position":2,"name":"Multiple Delete PHP"}]},{"@type":"WebSite","@id":"https:\/\/www.yellowweb.id\/blog\/#website","url":"https:\/\/www.yellowweb.id\/blog\/","name":"YELLOWWEB.ID","description":"Kursus Web Design | Kursus Web Programming | Mobile Web Apps | Digital Marketing","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.yellowweb.id\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.yellowweb.id\/blog\/#\/schema\/person\/75188044e080844724e381ab6a5b9829","name":"yellowweb","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5afd1bfac26e9377e8f5e36afb624cf3690dd31cb07c3961dfbc736b9ff1912f?s=96&d=mm&r=g","caption":"yellowweb"},"sameAs":["https:\/\/www.yellowweb.id"],"url":"https:\/\/www.yellowweb.id\/blog\/author\/yellowweb\/"}]}},"_links":{"self":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/549","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/comments?post=549"}],"version-history":[{"count":6,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/549\/revisions"}],"predecessor-version":[{"id":556,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/posts\/549\/revisions\/556"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/media\/554"}],"wp:attachment":[{"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/media?parent=549"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/categories?post=549"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.yellowweb.id\/blog\/wp-json\/wp\/v2\/tags?post=549"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}