{"id":2754,"date":"2018-10-26T09:15:44","date_gmt":"2018-10-26T03:45:44","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=2754"},"modified":"2018-10-27T09:03:11","modified_gmt":"2018-10-27T03:33:11","slug":"edit-the-profile-details-using-angular2","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/edit-the-profile-details-using-angular2\/","title":{"rendered":"Edit the profile details using Angular2"},"content":{"rendered":"<p><strong>Edit the profile details using Angular2<\/strong><\/p>\n<p><strong>Dated on: 25\/10\/2018<\/strong><\/p>\n<p>In this post we are going to see how to edit the profile details using angular 2. In previous post we have seen how to create the sign up form<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/\">https:\/\/blog.pheonixsolutions.com\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/<\/a><\/p>\n<p>Step 1: Create the new component or new project as you wish here i\u00a0 have created the new project so i done my code in app.component.To create a new project use<\/p>\n<p><span class=\"\"><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">ng new project_name<\/code><\/span><\/p>\n<p>To create a new component use<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">ng generate component [component-name]<\/code><\/p>\n<p>Step 2: To create the form design of the editing the details we first have to add the html design code in <strong>app.component.html.<\/strong>Here we have attached the code of html.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;h2&gt; profile &lt;\/h2&gt;\r\nName:&lt;input type=\"text\" name=\"Name\" id=\"Name\" value=\"{{Name}}\" &gt; &lt;br&gt;&lt;br&gt;\r\nGender:&lt;input type=\"text\" name=\"Gender\" id =\"Gender\" value=\"{{Gender}}\"&gt;&lt;br&gt;&lt;br&gt;\r\nMail:&lt;input type=\"text\" name=\"Mail\" id=\"Mail\" value=\"{{Mail}}\"&gt;&lt;br&gt;&lt;br&gt;\r\nQualification: &lt;input type=\"text\" name=\"Qualification\" id=\"Qualification\" value=\"{{Qualification}}\"&gt;&lt;br&gt;&lt;br&gt;\r\nHobbies:&lt;input type=\"text\" name=\"Hobbies\" id=\"Hobbies\" value=\"{{Hobbies}}\"&gt;&lt;br&gt;&lt;br&gt;\r\n\r\nPhone No:&lt;input type=\"text\" name=\"Phone\" id=\"Phone\" value=\"{{Phone}}\"&gt;&lt;br&gt;&lt;br&gt;\r\n&lt;button type=\"button\" name=\"submit\" (click)=\"clickAlert()\"&gt;Update&lt;\/button&gt;\r\n&lt;button type=\"button\" name=\"submit\" (click)=\"clickAlert()\"&gt;Logout&lt;\/button&gt;\r\n\r\n<\/pre>\n<p>Step 3: Use the component.ts code to fetch and update the values to the database .<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">import { Component, OnInit } from '@angular\/core';\r\nimport { Http, Headers, RequestOptions,HttpModule } from '@angular\/http';\r\nimport { ActivatedRoute } from '@angular\/router';\r\nimport {HttpClientModule} from '@angular\/common\/http';\r\nimport { Router } from '@angular\/router';\r\n\r\n@Component({\r\n  selector: 'app-root',\r\n  templateUrl: '.\/app.component.html',\r\n  styleUrls: ['.\/app.component.css']\r\n})\r\nexport class AppComponent implements OnInit {\r\nconstructor (private http:Http) { }\r\n  title = 'app';\r\n   public info: any;\r\n  ngOnInit() \r\n  {\r\n\r\n  let headers = new Headers();\r\n  headers.append('Content-Type', 'application\/x-www-form-urlencoded');\r\n      \/\/ Make the HTTP request:\r\n      \/\/ this.http.get('http:\/\/jsonip.com\/')\r\n      this.http.get('http:\/\/localhost\/fetch.php', {headers: headers})\r\n             .subscribe(res =&gt;{\r\n               this.info= res.json();\r\n              console.log(this.info);\r\n                this.Name = this.info.name;\r\n                this.Gender = this.info.gender\r\n                this.Mail = this.info.gmail\r\n                this.Qualification = this.info.qualification\r\n                this.Hobbies = this.info.hobbies\r\n                this.Phone = this.info.phoneno\r\n                           \r\n\r\n             } );\r\n  }\r\n  clickAlert()\r\n  {\r\n        var headers = new Headers();\r\n  headers.append('Content-Type', 'application\/x-www-form-urlencoded');\r\n  \r\n  var data = document.getElementById(\"Name\");\r\n  console.log(data.value);\r\n  var data1 = document.getElementById(\"Gender\");\r\n  console.log(data1.value);\r\n  var data2 = document.getElementById(\"Mail\");\r\n  console.log(data2.value);\r\n  var data3 = document.getElementById(\"Qualification\");\r\n  console.log(data3.value);\r\n  var data4 = document.getElementById(\"Hobbies\");\r\n  console.log(data4.value);\r\n  var data5 = document.getElementById(\"Phone\");\r\n  console.log(data5.value);\r\n\r\n  \/* var headers = new Headers();\r\n    headers.append('Content-Type', 'application\/x-www-form-urlencoded; charset=UTF-8');*\/\r\n     \r\n     var params = 'Name='+data.value+'&amp;Gender='+data1.value+'&amp;Mail='+data2.value, '&amp;Qualification='+data3.value, '&amp;Hobbies='+data4.value, '&amp;Phone='+data5.value;\r\n    this.http.post('http:\/\/localhost\/update.php', params , {headers: headers})\r\n      .subscribe(\r\n        data =&gt; console.log('Received:' + data),\r\n        err =&gt; console.log(err),\r\n        () =&gt; console.log('Call Complete')\r\n      );\r\n\r\n  }<\/pre>\n<p>Step 4: Don&#8217;t forget to create the php file to fetch the values from the database and to update the values to the database.Here we have used the two php in the name of fetch.php and update.php<\/p>\n<p>Fetch.php<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;?php\r\nprint_r($_POST);\r\n$Name = $_POST['Name'];\r\n$Gender = $_POST['Gender'];\r\n$Mail = $_POST['Mail'];\r\n$Qualification = $_POST['Qualification'];\r\n$Hobbies = $_POST['Hobbies'];\r\n$Phone = $_POST['Phone'];\r\n?&gt;\r\n\r\n&lt;?php\r\n$servername = \"localhost\";\r\n$username = \"root\";\r\n$password = \"\";\r\n$dbname = \"profile\";\r\n\/\/ Create connection\r\n$conn = new mysqli($servername, $username, $password, $dbname);\r\n\/\/ Check connection\r\nif ($conn-&gt;connect_error) {\r\n    die(\"Connection failed: \" . $conn-&gt;connect_error);\r\n}\r\n$sql = \"SELECT * FROM model where name='$Name'\";\r\n$result = $conn-&gt;query($sql);\r\nwhile($rowval = mysql_fetch_array($result))\r\n{\r\n$Name= $rowval['name'];\r\n$Gender= $rowval['gender'];\r\n$Mail= $rowval['gmail'];\r\n$Qualification= $rowval['qualification'];\r\n$Hobbies= $rowval['hobbies'];\r\n$Phone= $rowval['phone'];\r\n}\r\nif ($result-&gt;num_rows &gt; 0) { \r\n  $row = $result-&gt;fetch_assoc(); \r\n  echo json_encode($row);\r\n} \r\nelse {\r\n  echo \"0 results\";\r\n}\r\n$conn-&gt;close();\r\n?&gt;\r\n\r\n<\/pre>\n<p>update.php<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;?php\r\n$Name = $_POST['Name'];\r\n$Gender = $_POST['Gender'];\r\n$Mail = $_POST['Mail'];\r\n$Qualification = $_POST['Qualification'];\r\n$Hobbies = $_POST['Hobbies'];\r\n$Phone = $_POST['Phone'];\r\n?&gt;\r\n\r\n&lt;?php\r\n$servername = \"localhost\";\r\n$dbname = \"profile\";\r\n$username = \"root\";\r\n$password = \"\";\r\n\r\n\/\/ Create connection\r\n$conn = mysqli_connect($servername, $username, $password, $dbname);\r\n\/\/ Check connection\r\nif (!$conn) {\r\n    die(\"Connection failed: \" . mysqli_connect_error());\r\n}\r\n\r\n$sql = \"UPDATE model SET name='$Name',gender='$Gender',gmail='$Mail',qualification='Qualification',hobbies='$Hobbies',phoneno='Phone'  WHERE name='$Name'\";\r\nif(mysqli_query($conn, $sql)) {\r\n    echo \"Record Updated successfully\";\r\n} else {\r\n    echo \"Error: \" . $sql . \"&lt;br&gt;\" . mysqli_error($conn);\r\n}\r\n\r\nmysqli_close($conn);\r\n?&gt;\r\n\r\n\r\n<\/pre>\n<p>Step 5: After completing this Serve the ng to view the output of the project in a browser.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Edit the profile details using Angular2 Dated on: 25\/10\/2018 In this post we are going to see how to edit the profile details using angular 2. In previous post we have seen how to create the sign up form Step 1: Create the new component or new project as you&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/edit-the-profile-details-using-angular2\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Edit the profile details using Angular2<\/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":[284,225,387,221],"tags":[462,461],"class_list":{"0":"post-2754","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-centos","7":"category-linux","8":"category-mysql-database","9":"category-php","10":"tag-angular2-profile-editing","11":"tag-edit-profile","12":"h-entry","14":"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\/edit-the-profile-details-using-angular2\/\" \/>\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=\"Edit the profile details using Angular2 Dated on: 25\/10\/2018 In this post we are going to see how to edit the profile details using angular 2. In previous post we have seen how to create the sign up form Step 1: Create the new component or new project as you&hellip; Continue Reading Edit the profile details using Angular2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/edit-the-profile-details-using-angular2\/\" \/>\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-10-26T03:45:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-10-27T03:33:11+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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/edit-the-profile-details-using-angular2\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/edit-the-profile-details-using-angular2\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Edit the profile details using Angular2\",\"datePublished\":\"2018-10-26T03:45:44+00:00\",\"dateModified\":\"2018-10-27T03:33:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/edit-the-profile-details-using-angular2\\\/\"},\"wordCount\":196,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"Angular2 profile editing\",\"Edit profile\"],\"articleSection\":[\"Centos\",\"Linux\",\"Mysql\",\"PHP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/edit-the-profile-details-using-angular2\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/edit-the-profile-details-using-angular2\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/edit-the-profile-details-using-angular2\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2018-10-26T03:45:44+00:00\",\"dateModified\":\"2018-10-27T03:33:11+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/edit-the-profile-details-using-angular2\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/edit-the-profile-details-using-angular2\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/edit-the-profile-details-using-angular2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Edit the profile details using Angular2\"}]},{\"@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\/edit-the-profile-details-using-angular2\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Edit the profile details using Angular2 Dated on: 25\/10\/2018 In this post we are going to see how to edit the profile details using angular 2. In previous post we have seen how to create the sign up form Step 1: Create the new component or new project as you&hellip; Continue Reading Edit the profile details using Angular2","og_url":"https:\/\/pheonixsolutions.com\/blog\/edit-the-profile-details-using-angular2\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2018-10-26T03:45:44+00:00","article_modified_time":"2018-10-27T03:33:11+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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/edit-the-profile-details-using-angular2\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/edit-the-profile-details-using-angular2\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Edit the profile details using Angular2","datePublished":"2018-10-26T03:45:44+00:00","dateModified":"2018-10-27T03:33:11+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/edit-the-profile-details-using-angular2\/"},"wordCount":196,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["Angular2 profile editing","Edit profile"],"articleSection":["Centos","Linux","Mysql","PHP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/edit-the-profile-details-using-angular2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/edit-the-profile-details-using-angular2\/","url":"https:\/\/pheonixsolutions.com\/blog\/edit-the-profile-details-using-angular2\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2018-10-26T03:45:44+00:00","dateModified":"2018-10-27T03:33:11+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/edit-the-profile-details-using-angular2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/edit-the-profile-details-using-angular2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/edit-the-profile-details-using-angular2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Edit the profile details using Angular2"}]},{"@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-Iq","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2754","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=2754"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2754\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=2754"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=2754"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=2754"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}