{"id":1634,"date":"2017-06-14T11:53:00","date_gmt":"2017-06-14T06:23:00","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=1634"},"modified":"2017-06-14T11:53:00","modified_gmt":"2017-06-14T06:23:00","slug":"codeigniter-importing-data-using-excel-file","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/","title":{"rendered":"codeigniter importing data using excel file"},"content":{"rendered":"<p><strong>Date Posted:14-06-2017<\/strong><br \/>\nIn this post\u00a0 we will explain codeigniter importing data using excel file and PHPExcel libary<br \/>\nI assume that you are configure or setup the codeigniter<\/p>\n<p>step1:Download PHPExcel libarry from it\u2019s github repository or you can download it from PHPExcel official website.<br \/>\nDwonload PHPExcel library<br \/>\nDwonload PHPExcel library from GIThub repository from\u00a0<a href=\"https:\/\/phpexcel.codeplex.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/phpexcel.codeplex.com\/<\/a><\/p>\n<p>Step2:<\/p>\n<p>After download you find three differnt folder Classes,Documentation,Examples in PHPExcel.navigate to application\/thirdparty extract PHPExcel-&gt;Classes-&gt;PHPExcel.php and PHPExcel directory directory here.<\/p>\n<p>Step3:<br \/>\nNavigate to application\/libraries and create new file name as ExcelImport_lib.php,place following code here<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\">&lt;?php\r\n if ( ! defined('BASEPATH')) exit('No direct script access allowed'); \r\n ini_set('error_reporting', E_STRICT); \r\n require_once APPPATH.\"\/third_party\/PHPExcel.php\"; \r\n class ExcelImport_lib extends PHPExcel \r\n { public function __construct() \r\n \t{ parent::__construct(); } \r\n } ?&gt;<\/pre>\n<p>Step4:<br \/>\nNavigate to application\/controllers and create new file name as ImportExcel.php,place following code here<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\">&lt;?php\r\nif ( ! defined('BASEPATH')) exit('No direct script access allowed'); \r\n\/**\r\n * summary\r\n *\/\r\nclass ImportExcel extends CI_Controller\r\n{\r\n    public function index()\r\n    {\r\n    \t$this-&gt;load-&gt;view('excelimport');\t\r\n    }\r\n    public function Import($value='')\r\n    {\r\n        $this-&gt;load-&gt;library('ExcelImport_lib');\r\n \t\t\t\r\n     try {\r\n    \/\/\/ it will be your file name that you are posting with a form or can pass static name $_FILES[\"file\"][\"name\"];\r\n     \t\/\/ $objPHPExcel = PHPExcel_IOFactory::load('uploads\/'.$_FILES[\"file\"][\"name\"]);\r\n     \t$objPHPExcel = PHPExcel_IOFactory::load('uploads\/'.'yourTableName.xls');\r\n\r\n         }\r\n     catch(Exception $e)\r\n        {\r\n           $this-&gt;resp-&gt;success = FALSE;\r\n           $this-&gt;resp-&gt;msg = 'Error Uploading file';\r\n           echo json_encode($this-&gt;resp);\r\n           exit;\r\n        }\r\n\r\n     $allDataInSheet = $objPHPExcel-&gt;getActiveSheet()-&gt;toArray(null,true,true,true);\r\n     print_r($allDataInSheet);\r\n    foreach($allDataInSheet as $import)\r\n    {\r\n      echo $import['A']; \/\/\/ will return values of Col A\r\n      echo $import['B']; \/\/\/ will return values of Col B\r\n      echo $import['C']; \/\/\/ will return values of Col C\r\n      echo $import['D']; \/\/\/ will return values of Col D\r\n\r\n    }\r\n    }\r\n}\r\n\r\n?&gt;<\/pre>\n<p>Step5:<br \/>\nNavigate to application\/view and create new file name as excelimport.php,place following code here<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\">&lt;?php\r\ndefined('BASEPATH') OR exit('No direct script access allowed');\r\n?&gt;&lt;!DOCTYPE html&gt;\r\n&lt;html lang=\"en\"&gt;\r\n&lt;head&gt;\r\n  &lt;meta charset=\"utf-8\"&gt;\r\n  &lt;title&gt;Welcome to CodeIgniter&lt;\/title&gt;\r\n\r\n  &lt;style type=\"text\/css\"&gt;\r\n\r\n  ::selection { background-color: #E13300; color: white; }\r\n  ::-moz-selection { background-color: #E13300; color: white; }\r\n\r\n  body {\r\n    background-color: #fff;\r\n    margin: 40px;\r\n    font: 13px\/20px normal Helvetica, Arial, sans-serif;\r\n    color: #4F5155;\r\n  }\r\n\r\n  a {\r\n    color: #003399;\r\n    background-color: transparent;\r\n    font-weight: normal;\r\n  }\r\n\r\n  h1 {\r\n    color: #444;\r\n    background-color: transparent;\r\n    border-bottom: 1px solid #D0D0D0;\r\n    font-size: 19px;\r\n    font-weight: normal;\r\n    margin: 0 0 14px 0;\r\n    padding: 14px 15px 10px 15px;\r\n  }\r\n\r\n  code {\r\n    font-family: Consolas, Monaco, Courier New, Courier, monospace;\r\n    font-size: 12px;\r\n    background-color: #f9f9f9;\r\n    border: 1px solid #D0D0D0;\r\n    color: #002166;\r\n    display: block;\r\n    margin: 14px 0 14px 0;\r\n    padding: 12px 10px 12px 10px;\r\n  }\r\n\r\n  #body {\r\n    margin: 0 15px 0 15px;\r\n  }\r\n\r\n  p.footer {\r\n    text-align: right;\r\n    font-size: 11px;\r\n    border-top: 1px solid #D0D0D0;\r\n    line-height: 32px;\r\n    padding: 0 10px 0 10px;\r\n    margin: 20px 0 0 0;\r\n  }\r\n\r\n  #container {\r\n    margin: 10px;\r\n    border: 1px solid #D0D0D0;\r\n    box-shadow: 0 0 8px #D0D0D0;\r\n  }\r\n  &lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n<div id=\"container\">\r\n  <h1>Welcome to CodeIgniter!<\/h1>\r\n\r\n  <div id=\"body\">\r\n  <form>\" enctype=\"multipart\/form-data\" method=\"POST\" role=\"form\"&gt;\r\n    <legend>Form title<\/legend>\r\n  \r\n  \r\n  \r\n    \r\n  \r\n    <button type=\"submit\" class=\"btn btn-primary\">Click to Read<\/button>\r\n  <\/form>\r\n\r\n<\/div>\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Date Posted:14-06-2017 In this post\u00a0 we will explain codeigniter importing data using excel file and PHPExcel libary I assume that you are configure or setup the codeigniter step1:Download PHPExcel libarry from it\u2019s github repository or you can download it from PHPExcel official website. Dwonload PHPExcel library Dwonload PHPExcel library from&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">codeigniter importing data using excel file<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[340,221],"tags":[281,273],"class_list":{"0":"post-1634","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-codeigniter","7":"category-php","8":"tag-codedeploy","9":"tag-php","10":"h-entry","12":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/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:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Date Posted:14-06-2017 In this post\u00a0 we will explain codeigniter importing data using excel file and PHPExcel libary I assume that you are configure or setup the codeigniter step1:Download PHPExcel libarry from it\u2019s github repository or you can download it from PHPExcel official website. Dwonload PHPExcel library Dwonload PHPExcel library from&hellip; Continue Reading codeigniter importing data using excel file\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-06-14T06:23:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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:\\\/\\\/pheonixsolutions.com\\\/blog\\\/codeigniter-importing-data-using-excel-file\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/codeigniter-importing-data-using-excel-file\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"codeigniter importing data using excel file\",\"datePublished\":\"2017-06-14T06:23:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/codeigniter-importing-data-using-excel-file\\\/\"},\"wordCount\":149,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"codedeploy\",\"php\"],\"articleSection\":[\"Codeigniter\",\"PHP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/codeigniter-importing-data-using-excel-file\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/codeigniter-importing-data-using-excel-file\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/codeigniter-importing-data-using-excel-file\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2017-06-14T06:23:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/codeigniter-importing-data-using-excel-file\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/codeigniter-importing-data-using-excel-file\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/codeigniter-importing-data-using-excel-file\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"codeigniter importing data using excel file\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Date Posted:14-06-2017 In this post\u00a0 we will explain codeigniter importing data using excel file and PHPExcel libary I assume that you are configure or setup the codeigniter step1:Download PHPExcel libarry from it\u2019s github repository or you can download it from PHPExcel official website. Dwonload PHPExcel library Dwonload PHPExcel library from&hellip; Continue Reading codeigniter importing data using excel file","og_url":"https:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2017-06-14T06:23:00+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"codeigniter importing data using excel file","datePublished":"2017-06-14T06:23:00+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/"},"wordCount":149,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["codedeploy","php"],"articleSection":["Codeigniter","PHP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/","url":"https:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2017-06-14T06:23:00+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/codeigniter-importing-data-using-excel-file\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"codeigniter importing data using excel file"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-qm","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1634","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=1634"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1634\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=1634"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=1634"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=1634"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}