{"id":1130,"date":"2012-01-25T16:13:11","date_gmt":"2012-01-25T16:13:11","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2012\/01\/25\/database-setup\/"},"modified":"2021-08-16T23:48:20","modified_gmt":"2021-08-17T03:48:20","slug":"database-setup","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/","title":{"rendered":"Setting up a Database to Handle Form Data"},"content":{"rendered":"<p>In this tutorial, we are going to create a website at PHPandMySQL.inmotiontesting.com. This website is going to have 2 pages, and each page is going to allow for comments.<\/p>\n<p>When users submit a comment, we\u2019ll want to keep track of the following information:<\/p>\n<ul>\n<li>Their name<\/li>\n<li>Their email address<\/li>\n<li>Their website<\/li>\n<li>Their actual comment<\/li>\n<li>The time the comment was submitted<\/li>\n<\/ul>\n<p>In order to keep track of this data, we need to:<\/p>\n<ol>\n<li>Create a <strong>database<\/strong> for our website<\/li>\n<li>Create a table in the database that has values for name, email, website, and comment.<\/li>\n<\/ol>\n<h2>Step 1. Creating a Database<\/h2>\n<p>The easiest way to create a database is to use the MySQL Database Wizard available in cPanel. This will not only create a database for you, but help you create a database user and assign the user privileges to your database. For more help with creating a database, please see <a href=\"\/support\/\">How do I create a MySQL Database in my cPanel?<\/a><\/p>\n<p>If you\u2019re following along with our example, we\u2019ve used the MySQL Database Wizard and:<\/p>\n<ol>\n<li>Created a database named inmoti6_mysite<\/li>\n<li>Created a database user inmoti6_myuser with a password of mypassword<\/li>\n<li>Assigned inmoti6_myuser with privileges to inmoti6_mysite<\/li>\n<\/ol>\n<p><a href=\"\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-database-using-wizard.gif\" rel=\"lightbox-0\"><img decoding=\"async\" width=\"780\" height=\"390\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-database-using-wizard.gif\" class=\"optimized-lcp-image\" alt=\"create-a-database-using-wizard\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\"><\/a><\/p>\n<div style=\"clear: both;\"><\/div>\n<h2>Step 2. Creating a Table<\/h2>\n<p>Now that we\u2019ve created our database, we need to create a table to hold all user comments. This table will be called \u201ccomments\u201d. To create this table:<\/p>\n<ol>\n<li><a href=\"\/support\/edu\/cpanel\/how-to-log-into-cpanel\/\">Log into cPanel<\/a> and click the phpMyAdmin icon<\/li>\n<li>Select your database in the left menu. (we clicked on \u201c_mysite\u201d because our database is \u201cinmoti6_mysite\u201d)<\/li>\n<li>On the right side of the page under \u201cCreate new table on database\u201d, enter \u201ccomments\u201d as the name and 7 as the number of fields and click \u201cGo\u201d<br>\n<a href=\"\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-new-table-for-user-comments.gif\" rel=\"lightbox-0\"><img decoding=\"async\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-new-table-for-user-comments.gif\" alt=\"create-a-new-table-for-user-comments\" width=\"699\"><\/a>\n<div style=\"clear: both;\"><\/div>\n<\/li>\n<li>On the next screen, we will need to fill in specific details for our table. Please use the screenshot and details below to create the table\n<div class=\"code_block\">\n<p><strong>Field:<\/strong> id<br>\n<strong>Type<\/strong>: INT<br>\n<strong>A_I:<\/strong> (put a check in the box)<br>\nTo help manage individual comments, for example to delete one, we want to assign a specific id number to each comment.<\/p>\n<p><strong>Field:<\/strong> name<br>\n<strong>Type:<\/strong> VARCHAR<br>\n<strong>Length\/Values:<\/strong> 60<\/p>\n<p><strong>Field:<\/strong> email<br>\n<strong>Type:<\/strong> VARCHAR<br>\n<strong>Length\/Values:<\/strong> 60<\/p>\n<p><strong>Field:<\/strong> website<br>\n<strong>Type:<\/strong> VARCHAR<br>\n<strong>Length\/Values:<\/strong> 60<\/p>\n<p><strong>Field:<\/strong> comment<br>\n<strong>Type:<\/strong> TEXT<\/p>\n<p><strong>Field:<\/strong> timestamp<br>\n<strong>Type:<\/strong> TIMESTAMP<br>\n<strong>Default:<\/strong> CURRENT_TIMESTAMP<\/p>\n<p><strong>Field:<\/strong> articleid<br>\n<strong>Type:<\/strong> INT<br>\nEach comment needs to belong to a specific article, otherwise we wouldn\u2019t know which comments to display for which pages.<\/p>\n<p><a href=\"\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_setting-specific-details-for-the-table.gif\" rel=\"lightbox-0\"><img decoding=\"async\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_setting-specific-details-for-the-table.gif\" alt=\"setting-specific-details-for-the-table\" width=\"1514\"><\/a><\/p>\n<div style=\"clear: both;\"><\/div>\n<\/div>\n<\/li>\n<li>After you have filled in the details above, click \u201cSave\u201d<br>\n<a href=\"\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_our-comments-table-has-been-successfully-created.gif\" rel=\"lightbox-0\"><img decoding=\"async\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_our-comments-table-has-been-successfully-created.gif\" alt=\"our-comments-table-has-been-successfully-created\" width=\"936\"><\/a>\n<div style=\"clear: both;\"><\/div>\n<\/li>\n<\/ol>\n<p>Congratulations, as this point we have successfully created our database and setup our table! In our next article, we\u2019ll show you <a href=\"\/support\/website\/create-html-form\/\">how to create a <strong>form<\/strong> using HTML<\/a> that asks the user for their comment.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we are going to create a website at PHPandMySQL.inmotiontesting.com. This website is going to have 2 pages, and each page is going to allow for comments. When users submit a comment, we\u2019ll want to keep track of the following information: Their name Their email address Their website Their actual comment The time<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/\"> Read More ><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4288,4305],"tags":[],"class_list":["post-1130","post","type-post","status-publish","format-standard","hentry","category-website","category-databases"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Setting up a Database to Handle Form Data | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article, we&#039;ll walk you through creating a table in a database that will be used in a future tutorial to store data gathered from a form on a website.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Setting up a Database to Handle Form Data | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article, we&#039;ll walk you through creating a table in a database that will be used in a future tutorial to store data gathered from a form on a website.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2012-01-25T16:13:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:48:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-database-using-wizard.gif\" \/>\n<meta name=\"author\" content=\"Brad Markle\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Brad Markle\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/\"},\"author\":{\"name\":\"Brad Markle\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf\"},\"headline\":\"Setting up a Database to Handle Form Data\",\"datePublished\":\"2012-01-25T16:13:11+00:00\",\"dateModified\":\"2021-08-17T03:48:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/\"},\"wordCount\":449,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-database-using-wizard.gif\",\"articleSection\":[\"Website\",\"Working with Databases\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/\",\"name\":\"Setting up a Database to Handle Form Data | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-database-using-wizard.gif\",\"datePublished\":\"2012-01-25T16:13:11+00:00\",\"dateModified\":\"2021-08-17T03:48:20+00:00\",\"description\":\"In this article, we'll walk you through creating a table in a database that will be used in a future tutorial to store data gathered from a form on a website.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-database-using-wizard.gif\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-database-using-wizard.gif\",\"width\":780,\"height\":390,\"caption\":\"create-a-database-using-wizard\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Setting up a Database to Handle Form Data\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf\",\"name\":\"Brad Markle\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Setting up a Database to Handle Form Data | InMotion Hosting","description":"In this article, we'll walk you through creating a table in a database that will be used in a future tutorial to store data gathered from a form on a website.","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:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/","og_locale":"en_US","og_type":"article","og_title":"Setting up a Database to Handle Form Data | InMotion Hosting","og_description":"In this article, we'll walk you through creating a table in a database that will be used in a future tutorial to store data gathered from a form on a website.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2012-01-25T16:13:11+00:00","article_modified_time":"2021-08-17T03:48:20+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-database-using-wizard.gif","type":"","width":"","height":""}],"author":"Brad Markle","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Brad Markle","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/"},"author":{"name":"Brad Markle","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf"},"headline":"Setting up a Database to Handle Form Data","datePublished":"2012-01-25T16:13:11+00:00","dateModified":"2021-08-17T03:48:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/"},"wordCount":449,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-database-using-wizard.gif","articleSection":["Website","Working with Databases"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/","name":"Setting up a Database to Handle Form Data | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-database-using-wizard.gif","datePublished":"2012-01-25T16:13:11+00:00","dateModified":"2021-08-17T03:48:20+00:00","description":"In this article, we'll walk you through creating a table in a database that will be used in a future tutorial to store data gathered from a form on a website.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-database-using-wizard.gif","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/01\/website_phpmysql_create-a-database-using-wizard.gif","width":780,"height":390,"caption":"create-a-database-using-wizard"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/database-setup\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Setting up a Database to Handle Form Data"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf","name":"Brad Markle","url":"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/1130","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=1130"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/1130\/revisions"}],"predecessor-version":[{"id":86356,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/1130\/revisions\/86356"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=1130"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=1130"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=1130"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}