{"id":1206,"date":"2023-03-01T12:09:24","date_gmt":"2023-03-01T11:09:24","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=1206"},"modified":"2023-03-21T11:07:09","modified_gmt":"2023-03-21T10:07:09","slug":"blank-row-inserted-before-new-data-row-in-mysql-database","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/","title":{"rendered":"Blank Row is Inserted Before New Data Row in MySQL Database"},"content":{"rendered":"\n<p>Most times when working with <a href=\"https:\/\/www.mysql.com\" target=\"_blank\" rel=\"noreferrer noopener\">MySQL<\/a>, it is possible that a blank row is Inserted before new data row in MySQL database, as seen in the image below.<\/p>\n\n\n\n<p>If you receive an error message while trying to insert a blank row into a MySQL table, it may be because the table has one or more columns that do not allow null values. In this case, you&#8217;ll need to specify a valid default value for each column in the table, or update the table&#8217;s schema to allow null values.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"789\" height=\"112\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Screenshot-2023-03-01-at-11.52.12.png\" alt=\"blank row inserted into mysql database\" class=\"wp-image-1207\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Screenshot-2023-03-01-at-11.52.12.png 789w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Screenshot-2023-03-01-at-11.52.12-300x43.png 300w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Screenshot-2023-03-01-at-11.52.12-768x109.png 768w\" sizes=\"auto, (max-width: 789px) 100vw, 789px\" \/><\/figure>\n\n\n\n<p><a href=\"https:\/\/codeflarelimited.com\" target=\"_blank\" rel=\"noreferrer noopener\">Learning software development<\/a> is a very interesting process as you can experience errors like this often<\/p>\n\n\n\n<p>First, you need to verify that you are in fact not calling <strong>mysql_query()<\/strong> twice!<\/p>\n\n\n\n<p>If you&#8217;re now certain that you are indeed not actually inserting twice into the MySQL table, then you need to stop the code from executing twice by specifying the <strong>REQUEST METHOD<\/strong>.<\/p>\n\n\n\n<p>You specify that by adding the following code:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">if($_SERVER['REQUEST_METHOD'] == 'POST'){\n \/\/ your code here ...\n}<\/code><\/pre>\n\n\n\n<p>This should solve the blank row insertion problem. <\/p>\n\n\n\n<p>Also, you need to be sure you correctly inserting the right values into the right column.<\/p>\n\n\n\n<p>To insert a row with default values, you can use the following syntax:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">INSERT INTO your_table_name (column1, column2, column3) VALUES ('default_value1', 'default_value2', 'default_value3');\n<\/code><\/pre>\n\n\n\n<p>Replace <code>your_table_name<\/code>, <code>column1<\/code>, <code>column2<\/code>, and <code>column3<\/code> with the actual table and column names you&#8217;re working with, and <code>default_value1<\/code>, <code>default_value2<\/code>, and <code>default_value3<\/code> with the default values you want to use for each column.<\/p>\n\n\n\n<p>Let me know in the comments if it works for you<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Most times when working with MySQL, it is possible that a blank row is Inserted before new data<\/p>\n","protected":false},"author":1,"featured_media":1208,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[98],"tags":[],"class_list":["post-1206","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-softare-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Blank Row is Inserted Before New Data Row in MySQL Database<\/title>\n<meta name=\"description\" content=\"it is possible that a blank row is Inserted before new data row in MySQL database, as seen in the image below\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Blank Row is Inserted Before New Data Row in MySQL Database\" \/>\n<meta property=\"og:description\" content=\"it is possible that a blank row is Inserted before new data row in MySQL database, as seen in the image below\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-01T11:09:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-21T10:07:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-6.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/blank-row-inserted-before-new-data-row-in-mysql-database\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/blank-row-inserted-before-new-data-row-in-mysql-database\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"Blank Row is Inserted Before New Data Row in MySQL Database\",\"datePublished\":\"2023-03-01T11:09:24+00:00\",\"dateModified\":\"2023-03-21T10:07:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/blank-row-inserted-before-new-data-row-in-mysql-database\\\/\"},\"wordCount\":242,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/blank-row-inserted-before-new-data-row-in-mysql-database\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Untitled-Design-6.jpeg\",\"articleSection\":[\"softare development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/blank-row-inserted-before-new-data-row-in-mysql-database\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/blank-row-inserted-before-new-data-row-in-mysql-database\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/blank-row-inserted-before-new-data-row-in-mysql-database\\\/\",\"name\":\"Blank Row is Inserted Before New Data Row in MySQL Database\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/blank-row-inserted-before-new-data-row-in-mysql-database\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/blank-row-inserted-before-new-data-row-in-mysql-database\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Untitled-Design-6.jpeg\",\"datePublished\":\"2023-03-01T11:09:24+00:00\",\"dateModified\":\"2023-03-21T10:07:09+00:00\",\"description\":\"it is possible that a blank row is Inserted before new data row in MySQL database, as seen in the image below\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/blank-row-inserted-before-new-data-row-in-mysql-database\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/blank-row-inserted-before-new-data-row-in-mysql-database\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/blank-row-inserted-before-new-data-row-in-mysql-database\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Untitled-Design-6.jpeg\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Untitled-Design-6.jpeg\",\"width\":1200,\"height\":628,\"caption\":\"blank row inserted before actual data mysql\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/blank-row-inserted-before-new-data-row-in-mysql-database\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"softare development\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/softare-development\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Blank Row is Inserted Before New Data Row in MySQL Database\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Blank Row is Inserted Before New Data Row in MySQL Database","description":"it is possible that a blank row is Inserted before new data row in MySQL database, as seen in the image below","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:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/","og_locale":"en_US","og_type":"article","og_title":"Blank Row is Inserted Before New Data Row in MySQL Database","og_description":"it is possible that a blank row is Inserted before new data row in MySQL database, as seen in the image below","og_url":"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2023-03-01T11:09:24+00:00","article_modified_time":"2023-03-21T10:07:09+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-6.jpeg","type":"image\/jpeg"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"Blank Row is Inserted Before New Data Row in MySQL Database","datePublished":"2023-03-01T11:09:24+00:00","dateModified":"2023-03-21T10:07:09+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/"},"wordCount":242,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-6.jpeg","articleSection":["softare development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/","url":"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/","name":"Blank Row is Inserted Before New Data Row in MySQL Database","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-6.jpeg","datePublished":"2023-03-01T11:09:24+00:00","dateModified":"2023-03-21T10:07:09+00:00","description":"it is possible that a blank row is Inserted before new data row in MySQL database, as seen in the image below","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-6.jpeg","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-6.jpeg","width":1200,"height":628,"caption":"blank row inserted before actual data mysql"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/blank-row-inserted-before-new-data-row-in-mysql-database\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"softare development","item":"https:\/\/codeflarelimited.com\/blog\/softare-development\/"},{"@type":"ListItem","position":3,"name":"Blank Row is Inserted Before New Data Row in MySQL Database"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-6.jpeg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1206","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=1206"}],"version-history":[{"count":3,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1206\/revisions"}],"predecessor-version":[{"id":1252,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1206\/revisions\/1252"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/1208"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=1206"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=1206"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=1206"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}