{"id":3070,"date":"2018-12-11T15:04:33","date_gmt":"2018-12-11T09:34:33","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=3070"},"modified":"2019-02-07T15:41:50","modified_gmt":"2019-02-07T10:11:50","slug":"dompdf-codeigniter","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/dompdf-codeigniter\/","title":{"rendered":"dompdf codeigniter"},"content":{"rendered":"\n<p><strong>Date Posted : 10-12-2018<\/strong><br><\/p>\n\n\n\n<p><strong>What is Dompdf?<\/strong><\/p>\n\n\n\n<p>Dompdf&nbsp; is a HTML to PDF converter. It is a great library and can create a PDF from HTML markup and CSS styles (it\u2019s mostly CSS 2.1 compliant and has support for some CSS3 properties).<\/p>\n\n\n\n<p><strong>Step 1<\/strong>: Initially, download the fresh version of Codeigniter 3 and configure it in xampp.<\/p>\n\n\n\n<p><strong>Step 2<\/strong>: Create the file&nbsp; &nbsp;name called &#8220;<strong>&nbsp;Pdf.php<\/strong>&nbsp;&#8221; . Place this file inside the <strong>application\/libraries\/<\/strong> and copy the following code.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php defined('BASEPATH') OR exit('No direct script access allowed');\n\trequire_once(dirname(__FILE__) . '\/dompdf\/dompdf_config.inc.php');\n\tclass Pdf extends DOMPDF\n\t{\n\t\t\/**\n\t\t * Get an instance of CodeIgniter\n\t\t *\n\t\t * @access\tprotected\n\t\t * @return\tvoid\n\t\t *\/\n\t\tprotected function ci()\n\t\t{\n\t\t\treturn get_instance();\n\t\t}\n\t\t\/**\n\t\t * Load a CodeIgniter view into domPDF\n\t\t *\n\t\t * @access\tpublic\n\t\t * @param\tstring\t$view The view to load\n\t\t * @param\tarray\t$data The view data\n\t\t * @return\tvoid\n\t\t *\/\n\t\tpublic function load_view($view, $data = array())\n\t\t{\n\t\t\t$html = $this-&gt;ci()-&gt;load-&gt;view($view, $data, TRUE);\n\t\t\t$this-&gt;load_html($html);\n\t\t}\n\t}\n<\/pre><\/div>\n\n\n<p><strong>Step 3<\/strong>: Dompdf: we have to download dompdf library from GitHub, So let&#8217;s download from here : <a href=\"https:\/\/github.com\/dompdf\/dompdf\">Click Here <\/a>to download dompdf. After download extract it to your &#8220;application\/libraries&#8221; folder and rename it to &#8220;dompdf&#8221;.<\/p>\n\n\n\n<p><strong>Step 4:<\/strong> In this step, we will add one route &#8220;<strong>mypdf<\/strong>&#8221; for <strong>demo<\/strong>, that way when we run this route we will download pdf file, So let&#8217;s add following route on your <strong>routes.php<\/strong> file.<\/p>\n\n\n\n<p>application\/config\/routes.php<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&amp;lt;?php\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n\n$route&#x5B;'default_controller'] = 'welcome';\n$route&#x5B;'404_override'] = '';\n$route&#x5B;'translate_uri_dashes'] = FALSE;\n$route&#x5B;'mypdf'] = &quot;welcome\/mypdf&quot;;\n\n<\/pre><\/div>\n\n\n<p><strong>Step 5<\/strong>: In this step we require to add &#8220;mypdf&#8221; method on welcome controller, So let&#8217;s add with following code. you have to just copy of <strong>welcome.php<\/strong> controller file:<\/p>\n\n\n\n<p>application\/controllers\/Welcome.php<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&amp;lt;?php\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n\nclass Welcome extends CI_Controller {\n\n\n  \/**\n    * Get All Data from this method.\n    *\n    * @return Response\n   *\/\n   public function index()\n   {\n\t$this-&amp;gt;load-&amp;gt;view('welcome_message');\n   }\n\n\n   \/**\n    * Get Download PDF File\n    *\n    * @return Response\n   *\/\n   function mypdf(){\n\n\n\t$this-&amp;gt;load-&amp;gt;library('pdf');\n\n\n  \t$this-&amp;gt;pdf-&amp;gt;load_view('mypdf');\n  \t$this-&amp;gt;pdf-&amp;gt;render();\n\n\n  \t$this-&amp;gt;pdf-&amp;gt;stream(&quot;welcome.pdf&quot;);\n   }\n}\n\n<\/pre><\/div>\n\n\n<p><strong>Step 6:<\/strong> Adding View File<\/p>\n\n\n\n<p>Now at last step we require to create &#8220;<strong>mypdf.php<\/strong>&#8221; view file for generate pdf file. So now as below i created &#8220;<strong>mypdf.php<\/strong>&#8221; with some html code, so you have to copy below code and create on view folder:<\/p>\n\n\n\n<p>application\/views\/mypdf.php<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&amp;lt;!DOCTYPE html&amp;gt;\n&amp;lt;html&amp;gt;\n&amp;lt;head&amp;gt;\n\t&amp;lt;title&amp;gt;Codeigniter 3 - Generate PDF from view using dompdf library with example&amp;lt;\/title&amp;gt;\n&amp;lt;\/head&amp;gt;\n&amp;lt;body&amp;gt;\n\n\n&amp;lt;h1&amp;gt;Codeigniter 3 - Generate PDF from view using dompdf library with example&amp;lt;\/h1&amp;gt;\n&amp;lt;table style=&quot;border:1px solid red;width:100%;&quot;&amp;gt;\n\t&amp;lt;tr&amp;gt;\n\t\t&amp;lt;th style=&quot;border:1px solid red&quot;&amp;gt;Id&amp;lt;\/th&amp;gt;\n\t\t&amp;lt;th style=&quot;border:1px solid red&quot;&amp;gt;Name&amp;lt;\/th&amp;gt;\n\t\t&amp;lt;th style=&quot;border:1px solid red&quot;&amp;gt;Email&amp;lt;\/th&amp;gt;\n\t&amp;lt;\/tr&amp;gt;\n\t&amp;lt;tr&amp;gt;\n\t\t&amp;lt;td style=&quot;border:1px solid red&quot;&amp;gt;1&amp;lt;\/td&amp;gt;\n\t\t&amp;lt;td style=&quot;border:1px solid red&quot;&amp;gt;Hardik&amp;lt;\/td&amp;gt;\n\t\t&amp;lt;td style=&quot;border:1px solid red&quot;&amp;gt;user@email.com&amp;lt;\/td&amp;gt;\n\t&amp;lt;\/tr&amp;gt;\n\t&amp;lt;tr&amp;gt;\n\t\t&amp;lt;td style=&quot;border:1px solid red&quot;&amp;gt;2&amp;lt;\/td&amp;gt;\n\t\t&amp;lt;td style=&quot;border:1px solid red&quot;&amp;gt;Paresh&amp;lt;\/td&amp;gt;\n\t\t&amp;lt;td style=&quot;border:1px solid red&quot;&amp;gt;user@email.com&amp;lt;\/td&amp;gt;\n\t&amp;lt;\/tr&amp;gt;\n&amp;lt;\/table&amp;gt;\n\n\n&amp;lt;\/body&amp;gt;\n&amp;lt;\/html&amp;gt;\n\n<\/pre><\/div>\n\n\n<p>Ok, now we are ready to run our <strong>PDF generator example<\/strong>. So let&#8217;s run below command on your root directory for quick run:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nhttp:\/\/localhost\/mypdf\n<\/pre><\/div>","protected":false},"excerpt":{"rendered":"<p>Date Posted : 10-12-2018 What is Dompdf? Dompdf&nbsp; is a HTML to PDF converter. It is a great library and can create a PDF from HTML markup and CSS styles (it\u2019s mostly CSS 2.1 compliant and has support for some CSS3 properties). Step 1: Initially, download the fresh version of&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/dompdf-codeigniter\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">dompdf codeigniter<\/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":"status","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":[509,511,510,273],"class_list":{"0":"post-3070","1":"post","2":"type-post","3":"status-publish","4":"format-status","5":"hentry","6":"category-codeigniter","7":"category-php","8":"tag-codeiginiter","9":"tag-dompdf","10":"tag-html-to-pdf","11":"tag-php","12":"post_format-post-format-status","13":"h-entry","15":"h-as-note"},"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\/dompdf-codeigniter\/\" \/>\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 : 10-12-2018 What is Dompdf? Dompdf&nbsp; is a HTML to PDF converter. It is a great library and can create a PDF from HTML markup and CSS styles (it\u2019s mostly CSS 2.1 compliant and has support for some CSS3 properties). Step 1: Initially, download the fresh version of&hellip; Continue Reading dompdf codeigniter\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/dompdf-codeigniter\/\" \/>\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=\"2018-12-11T09:34:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-02-07T10:11:50+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\\\/dompdf-codeigniter\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dompdf-codeigniter\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"dompdf codeigniter\",\"datePublished\":\"2018-12-11T09:34:33+00:00\",\"dateModified\":\"2019-02-07T10:11:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dompdf-codeigniter\\\/\"},\"wordCount\":258,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"codeiginiter\",\"Dompdf\",\"html to pdf\",\"php\"],\"articleSection\":[\"Codeigniter\",\"PHP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dompdf-codeigniter\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dompdf-codeigniter\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dompdf-codeigniter\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2018-12-11T09:34:33+00:00\",\"dateModified\":\"2019-02-07T10:11:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dompdf-codeigniter\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dompdf-codeigniter\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dompdf-codeigniter\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"dompdf codeigniter\"}]},{\"@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\/dompdf-codeigniter\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Date Posted : 10-12-2018 What is Dompdf? Dompdf&nbsp; is a HTML to PDF converter. It is a great library and can create a PDF from HTML markup and CSS styles (it\u2019s mostly CSS 2.1 compliant and has support for some CSS3 properties). Step 1: Initially, download the fresh version of&hellip; Continue Reading dompdf codeigniter","og_url":"https:\/\/pheonixsolutions.com\/blog\/dompdf-codeigniter\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2018-12-11T09:34:33+00:00","article_modified_time":"2019-02-07T10:11:50+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\/dompdf-codeigniter\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/dompdf-codeigniter\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"dompdf codeigniter","datePublished":"2018-12-11T09:34:33+00:00","dateModified":"2019-02-07T10:11:50+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/dompdf-codeigniter\/"},"wordCount":258,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["codeiginiter","Dompdf","html to pdf","php"],"articleSection":["Codeigniter","PHP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/dompdf-codeigniter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/dompdf-codeigniter\/","url":"https:\/\/pheonixsolutions.com\/blog\/dompdf-codeigniter\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2018-12-11T09:34:33+00:00","dateModified":"2019-02-07T10:11:50+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/dompdf-codeigniter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/dompdf-codeigniter\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/dompdf-codeigniter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"dompdf codeigniter"}]},{"@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-Nw","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/3070","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=3070"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/3070\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=3070"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=3070"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=3070"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}