{"id":2730,"date":"2018-10-22T21:37:00","date_gmt":"2018-10-22T16:07:00","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=2730"},"modified":"2018-10-22T21:39:52","modified_gmt":"2018-10-22T16:09:52","slug":"how-to-create-a-signup-form-and-edit-the-details-using-angular2","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/","title":{"rendered":"How to create a Signup form and edit the details using Angular2"},"content":{"rendered":"<p><strong>How to create a signup form and edit the details using Angular2<\/strong><\/p>\n<p><strong>Dated : 18\/10\/2018<\/strong><\/p>\n<p>In this blog we are going to see how to create a signup form and edit the details of the user using Angular2.<\/p>\n<p><strong>Pre-requites:\u00a0<\/strong>To do this you have to install the Angular 2 in your machine if you doesn&#8217;t have the angular 2 in you machine you can install this using our previous post.<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/angular-2-installation\/\">https:\/\/blog.pheonixsolutions.com\/angular-2-installation\/<\/a><\/p>\n<p><strong>Step 1:<\/strong> Create a new Angular 2 project.(This will probably take a few minutes belongs to the system performance)<\/p>\n<p><span class=\"enlighterEnlighterJS EnlighterJS\"><span class=\"\"><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">ng new project_name<\/code><\/span><\/span><\/p>\n<p><strong>Step 2:<\/strong> There is a default app component will be created while creating the project if you want to create another new component with different name you can use<\/p>\n<p><strong><span class=\"enlighterEnlighterJS EnlighterJS\"><span class=\"br0\"><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">ng generate component [component-name]<br \/>\n<\/code><\/span><\/span><\/strong><\/p>\n<p><strong>Step 3:<\/strong> To create the signup form using angular2 add the below html code in <strong>app.component.html<\/strong><\/p>\n<div style=\"text-align: center;\"><\/div>\n<div style=\"text-align: center;\">\n<h1>Welcome to website!<\/h1>\n<p>&lt;h2&gt;Please enter your details: &lt;\/h2&gt; Name:&lt;input type=&#8221;text&#8221; name=&#8221;Name&#8221; id=&#8221;Name&#8221;&gt; &lt;br&gt;&lt;br&gt; Gender:&lt;input type=&#8221;text&#8221; name=&#8221;Gender&#8221; id =&#8221;Gender&#8221;&gt;&lt;br&gt;&lt;br&gt; Mail:&lt;input type=&#8221;text&#8221; name=&#8221;Mail&#8221; id=&#8221;Mail&#8221;&gt;&lt;br&gt;&lt;br&gt; Qualification: &lt;input type=&#8221;text&#8221; name=&#8221;Qualification&#8221; id=&#8221;Qualification&#8221;&gt;&lt;br&gt;&lt;br&gt; Hobbies:&lt;input type=&#8221;text&#8221; name=&#8221;Hobbies&#8221; id=&#8221;Hobbies&#8221;&gt;&lt;br&gt;&lt;br&gt; Phone No:&lt;input type=&#8221;text&#8221; name=&#8221;Phone&#8221; id=&#8221;Phone&#8221;&gt;&lt;br&gt;&lt;br&gt; &lt;button type=&#8221;button&#8221; name=&#8221;submit&#8221; (click)=&#8221;clickAlert()&#8221;&gt;submit&lt;\/button&gt;<\/p>\n<\/div>\n<p><strong>Step 4:<\/strong> Add the below code in <strong>app.component.ts<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">import { Component } 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\n\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 \r\n{\r\n  \r\n  constructor (private http:Http) { }\r\n  title = 'app';\r\n  clickAlert() \r\n{\r\n    \/\/alert(\"Data Saved Successfully\");\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  \/*let datas = {'Name': 'data.value',  \r\n  @'Gender' 'data1.value', '&amp;Mail='+data2.value, '&amp;Qualification='+data3.value, '&amp;Hobbies='+data4.value, '&amp;Phone='+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\/connectphp.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   \t}\r\n}\r\n<\/pre>\n<p>Before adding this code don&#8217;t forgot to create the database in mysql here we are using mysql database.<\/p>\n<p style=\"text-align: left;\"><strong>Step 5:<\/strong> To connect the values with the mysql database we can pass the values through the php connection. Below we have attached the code of php connection for the database. Here we gave the php file name as <strong>connectphp.php<\/strong>. If you want any other name just change the file name and the below source code on this php file.<\/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\r\n?&gt;\r\n\r\n&lt;?php\r\n$servername = \"localhost\";\r\n$dbname = \"testing\";\r\n$username = \"rakesh\";\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\necho $sql = \"INSERT INTO model (name,gender,gmail,qualification,hobbies,phoneno)\r\nVALUES ('$Name','$Gender','$Mail','$Qualification','$Hobbies','$Phone' )\";\r\n\r\nif (mysqli_query($conn, $sql)) {\r\n    echo \"New record created 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>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p><strong><span class=\"enlighterEnlighterJS EnlighterJS\"><span class=\"br0\">\u00a0<\/span><\/span><\/strong><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to create a signup form and edit the details using Angular2 Dated : 18\/10\/2018 In this blog we are going to see how to create a signup form and edit the details of the user using Angular2. Pre-requites:\u00a0To do this you have to install the Angular 2 in your&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to create a Signup form and edit the 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":[356,387,221,1],"tags":[453,452],"class_list":{"0":"post-2730","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-mysql","7":"category-mysql-database","8":"category-php","9":"category-uncategorized","10":"tag-angular-signup","11":"tag-signup-form-angular","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\/how-to-create-a-signup-form-and-edit-the-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=\"How to create a signup form and edit the details using Angular2 Dated : 18\/10\/2018 In this blog we are going to see how to create a signup form and edit the details of the user using Angular2. Pre-requites:\u00a0To do this you have to install the Angular 2 in your&hellip; Continue Reading How to create a Signup form and edit the details using Angular2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-create-a-signup-form-and-edit-the-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-22T16:07:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-10-22T16:09:52+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\\\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"How to create a Signup form and edit the details using Angular2\",\"datePublished\":\"2018-10-22T16:07:00+00:00\",\"dateModified\":\"2018-10-22T16:09:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\\\/\"},\"wordCount\":363,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"Angular signup\",\"Signup form Angular\"],\"articleSection\":[\"MySQL\",\"Mysql\",\"PHP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2018-10-22T16:07:00+00:00\",\"dateModified\":\"2018-10-22T16:09:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create a Signup form and edit the 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\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"How to create a signup form and edit the details using Angular2 Dated : 18\/10\/2018 In this blog we are going to see how to create a signup form and edit the details of the user using Angular2. Pre-requites:\u00a0To do this you have to install the Angular 2 in your&hellip; Continue Reading How to create a Signup form and edit the details using Angular2","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2018-10-22T16:07:00+00:00","article_modified_time":"2018-10-22T16:09:52+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\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"How to create a Signup form and edit the details using Angular2","datePublished":"2018-10-22T16:07:00+00:00","dateModified":"2018-10-22T16:09:52+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/"},"wordCount":363,"commentCount":1,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["Angular signup","Signup form Angular"],"articleSection":["MySQL","Mysql","PHP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2018-10-22T16:07:00+00:00","dateModified":"2018-10-22T16:09:52+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-create-a-signup-form-and-edit-the-details-using-angular2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to create a Signup form and edit the 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-I2","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2730","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=2730"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2730\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=2730"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=2730"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=2730"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}