{"id":33726,"date":"2023-02-13T02:22:36","date_gmt":"2023-02-12T20:52:36","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/"},"modified":"2023-02-13T02:22:36","modified_gmt":"2023-02-12T20:52:36","slug":"solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/","title":{"rendered":"[Solved] How can i Store HTML arrays into Mysql using PHP in each columns"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-49347162\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"49347162\" data-parentid=\"49273721\" data-score=\"1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<div class=\"snippet\" data-lang=\"js\" data-hide=\"false\" data-console=\"true\" data-babel=\"false\">\n<div class=\"snippet-code\">\n<pre class=\"snippet-code-js lang-js prettyprint-override\"><code>&lt;SCRIPT language=\"javascript\"&gt;\r\nfunction addRow(tableID) {\r\n\tvar table = document.getElementById(tableID);\r\n\tvar rowCount = table.rows.length;\r\n\tif(rowCount &lt; 10){                            \/\/ limit the user from creating fields more than your limits\r\n\t\tvar row = table.insertRow(rowCount);\r\n\t\tvar colCount = table.rows[0].cells.length;\r\n\t\tfor(var i=0; i &lt;colCount; i++) {\r\n\t\t\tvar newcell = row.insertCell(i);\r\n\t\t\tnewcell.innerHTML = table.rows[0].cells[i].innerHTML;\r\n\t\t}\r\n\t}else{\r\n\t\t alert(\"Maximum Number of Books is 10\");\r\n\t\t\t   \r\n\t}\r\n}\r\n\r\nfunction deleteRow(tableID) {\r\n\tvar table = document.getElementById(tableID);\r\n\tvar rowCount = table.rows.length;\r\n\tfor(var i=0; i&lt;rowCount; i++) {\r\n\t\tvar row = table.rows[i];\r\n\t\tvar chkbox = row.cells[0].childNodes[0];\r\n\t\tif(null != chkbox &amp;&amp; true == chkbox.checked) {\r\n\t\t\tif(rowCount &lt;= 1) {               \/\/ limit the user from removing all the fields\r\n\t\t\t\talert(\"Cannot Remove all the Books.\");\r\n\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t\ttable.deleteRow(i);\r\n\t\t\trowCount--;\r\n\t\t\ti--;\r\n\t\t}\r\n\t}\r\n}\r\n&lt;\/SCRIPT&gt;<\/code><\/pre>\n<pre class=\"snippet-code-html lang-html prettyprint-override\"><code>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n\t&lt;title&gt;&lt;\/title&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n\t&lt;div style=\"border:auto solid 1px; font-size:15px; background-color:red; width:100%;\"&gt;\r\n    &lt;form action=\"\" enctype=\"multipart\/form-data\" id=\"pdf_form\" method=\"post\" name=\"pdf_form\"&gt;\r\n\r\n    \t\r\n      &lt;table id=\"dataTable\" class=\"form\" border=\"1\"&gt;\r\n      &lt;tbody&gt;\r\n    \t&lt;p&gt;\r\n    \t&lt;td &gt;\r\n    \t\t&lt;input type=\"checkbox\" name=\"chk[]\" checked=\"checked\" \/&gt;\r\n    \t&lt;\/td&gt;\r\n    \t&lt;td&gt;\r\n    \t&lt;label for=\"title\"&gt;Title of PDF&lt;\/label&gt;\r\n    \t&lt;input type=\"text\" id=\"title\" name=\"title[]\"&gt;\r\n\r\n    \t\r\n    \t&lt;td&gt;\r\n    \t&lt;label for=\"pdffile\"&gt;PDF supported. 2MB Maximum)&lt;\/label&gt;\r\n    \t&lt;input type=\"file\" id=\"pdffile\" name=\"pdffile[]\"&gt;\r\n    \t\r\n    \t&lt;\/td&gt;\r\n    \t\r\n    \t&lt;td&gt;\r\n    \t&lt;label for=\"category\"&gt;Category&lt;\/label&gt;\r\n    \t&lt;select id=\"category\" name=\"category[]\"&gt; \r\n        &lt;option&gt;Science&lt;\/option&gt;\r\n        &lt;option&gt;Technology&lt;\/option&gt;\r\n        &lt;option&gt;Biblical&lt;\/option&gt;\r\n        &lt;option&gt;Business&lt;\/option&gt;\r\n        &lt;option&gt;Medical&lt;\/option&gt;\r\n        &lt;option&gt;Engineering&lt;\/option&gt;\r\n        &lt;option&gt;World&lt;\/option&gt;\r\n    \t&lt;\/select&gt;\r\n    \t&lt;\/td&gt;\r\n    \t\r\n    \t&lt;\/p&gt;\r\n      &lt;\/tr&gt;\r\n     &lt;\/tbody&gt;\r\n    &lt;\/table&gt;\r\n\r\n\r\n    &lt;p&gt; \r\n      &lt;input type=\"button\" value=\"Add PDF\" onClick=\"addRow('dataTable')\" \/&gt; \r\n      &lt;input id=\"button\" name=\"submit\" type=\"submit\" value=\"Save PDF(s)\" \/&gt;\r\n      \r\n      &lt;p&gt;(All actions apply only to entries with check marked check boxes only.)&lt;\/p&gt;\r\n    &lt;\/p&gt;\r\n    &lt;\/form&gt;\r\n    &lt;\/div&gt;\r\n\r\n    &lt;!-- \/\/PHP for Upload --&gt;\r\n\r\n\r\n\r\n    &lt;?php\r\n    $con = mysqli_connect(\"localhost\", \"root\",\"\", \"pdf\") or die (\"Error\".mysqli_error($con));\r\n\r\nif($_SERVER[\"REQUEST_METHOD\"] == \"POST\") { \r\n\r\n    if(isset($_POST['submit']) &amp;&amp; $_FILES['pdffile']['size'] &gt; 0)\r\n\t{\r\n        $fileName = $_FILES['pdffile']['name'];\r\n        $tmpName  = $_FILES['pdffile']['tmp_name'];\r\n        $fileSize = $_FILES['pdffile']['size'];\r\n        $fileType = $_FILES['pdffile']['type'];\r\n\r\n        $item_title = $_POST['title'];\r\n\t\t$item_category = $_POST['category'];\r\n\r\n        for($count = 0; $count&lt;count($item_title); $count++){\r\n        \t\r\n\r\n        \t  $title = mysqli_real_escape_string($con,$item_title[$count]);\r\n\t\t\t  $category = mysqli_real_escape_string($con,$item_category[$count]);\r\n\t\t\t  $pdfname = mysqli_real_escape_string($con, $fileName[$count]);  \/\/document name\r\n\t\t\t  $tmpname = mysqli_real_escape_string($con, $tmpName[$count]);\r\n\t\t\t  $folder = \"uploads\/\";\r\n\r\n\t\t\t  if(!get_magic_quotes_gpc())\r\n\t\t        {\r\n\t\t            $pdfname = addslashes($pdfname);\r\n\t\t        }\r\n\r\n\t\t\t  $doc_path = move_uploaded_file($tmpname, $folder.$pdfname);\r\n\r\n\t\t\t  $sql = \"INSERT INTO zipcode (country, city, zipCode) VALUES('$title', '$category', '$pdfname')\";\r\n\r\n\t\t\t  if ($con-&gt;query($sql) === TRUE) {\r\n    \t\t\techo \"&lt;div style=\"border:auto solid 1px; font-size:15px; color:green; background-color:auto; width:100%;\"&gt; PDF with Title $title Added Successfully. &lt;\/div&gt;\";\r\n  \t\t\t}\r\n\t\t\t  else {\r\n\t\t\t    echo \"Error: \" . $sql . \"&lt;br&gt;\" . $con-&gt;error;\r\n\t\t\t  };\r\n        \t}\r\n        \r\n    }    \r\n}  \r\n\r\n\r\n?&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/code><\/pre>\n<\/div>\n<\/div><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">8<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved How can i Store HTML arrays into Mysql using PHP in each columns <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] &lt;SCRIPT language=&#8221;javascript&#8221;&gt; function addRow(tableID) { var table = document.getElementById(tableID); var rowCount = table.rows.length; if(rowCount &lt; 10){ \/\/ limit the user from creating fields more than your limits var row = table.insertRow(rowCount); var colCount = table.rows[0].cells.length; for(var i=0; i &lt;colCount; i++) { var newcell = row.insertCell(i); newcell.innerHTML = table.rows[0].cells[i].innerHTML; } }else{ alert(&#8220;Maximum Number of Books &#8230; <a title=\"[Solved] How can i Store HTML arrays into Mysql using PHP in each columns\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/\" aria-label=\"More on [Solved] How can i Store HTML arrays into Mysql using PHP in each columns\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[346,333,388,340,339],"class_list":["post-33726","post","type-post","status-publish","format-standard","hentry","category-solved","tag-html","tag-javascript","tag-jquery","tag-mysql","tag-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] How can i Store HTML arrays into Mysql using PHP in each columns - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How can i Store HTML arrays into Mysql using PHP in each columns - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] &lt;SCRIPT language=&quot;javascript&quot;&gt; function addRow(tableID) { var table = document.getElementById(tableID); var rowCount = table.rows.length; if(rowCount &lt; 10){ \/\/ limit the user from creating fields more than your limits var row = table.insertRow(rowCount); var colCount = table.rows[0].cells.length; for(var i=0; i &lt;colCount; i++) { var newcell = row.insertCell(i); newcell.innerHTML = table.rows[0].cells[i].innerHTML; } }else{ alert(&quot;Maximum Number of Books ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-12T20:52:36+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. 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:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How can i Store HTML arrays into Mysql using PHP in each columns\",\"datePublished\":\"2023-02-12T20:52:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/\"},\"wordCount\":30,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"html\",\"javascript\",\"jquery\",\"mysql\",\"php\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/\",\"name\":\"[Solved] How can i Store HTML arrays into Mysql using PHP in each columns - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2023-02-12T20:52:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How can i Store HTML arrays into Mysql using PHP in each columns\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] How can i Store HTML arrays into Mysql using PHP in each columns - JassWeb","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:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How can i Store HTML arrays into Mysql using PHP in each columns - JassWeb","og_description":"[ad_1] &lt;SCRIPT language=\"javascript\"&gt; function addRow(tableID) { var table = document.getElementById(tableID); var rowCount = table.rows.length; if(rowCount &lt; 10){ \/\/ limit the user from creating fields more than your limits var row = table.insertRow(rowCount); var colCount = table.rows[0].cells.length; for(var i=0; i &lt;colCount; i++) { var newcell = row.insertCell(i); newcell.innerHTML = table.rows[0].cells[i].innerHTML; } }else{ alert(\"Maximum Number of Books ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/","og_site_name":"JassWeb","article_published_time":"2023-02-12T20:52:36+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How can i Store HTML arrays into Mysql using PHP in each columns","datePublished":"2023-02-12T20:52:36+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/"},"wordCount":30,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["html","javascript","jquery","mysql","php"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/","url":"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/","name":"[Solved] How can i Store HTML arrays into Mysql using PHP in each columns - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2023-02-12T20:52:36+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-can-i-store-html-arrays-into-mysql-using-php-in-each-columns\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How can i Store HTML arrays into Mysql using PHP in each columns"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/33726","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=33726"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/33726\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=33726"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=33726"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=33726"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}