{"id":1148,"date":"2021-07-21T13:30:53","date_gmt":"2021-07-21T13:30:53","guid":{"rendered":"https:\/\/www.wikitechy.com\/interview-questions\/?p=1148"},"modified":"2021-09-08T11:31:23","modified_gmt":"2021-09-08T11:31:23","slug":"difference-between-get-and-post-method-in-php","status":"publish","type":"post","link":"https:\/\/www.wikitechy.com\/interview-questions\/php\/difference-between-get-and-post-method-in-php\/","title":{"rendered":"Difference Between Get and Post Method in PHP ?"},"content":{"rendered":"<div class=\"TextHeading\">\n<div class=\"hddn\">\n<h2 id=\"difference-between-get-and-post-method-in-php\" class=\"color-pink\">Difference Between Get and Post Method in PHP ?<\/h2>\n<\/div>\n<\/div>\n<div class=\"table-responsive\">\n<div class=\"hddn\">\n<table class=\"table-bordered table-striped table table-responsive\">\n<tbody>\n<tr>\n<th><a href=\"https:\/\/www.wikitechy.com\/php\/php-get\" target=\"_blank\" rel=\"noopener\">$_GET Method<\/a><\/th>\n<th><a href=\"https:\/\/www.wikitechy.com\/php\/php-post\" target=\"_blank\" rel=\"noopener\">$_POST Method<\/a><\/th>\n<\/tr>\n<tr>\n<td class=\"text-leftalign\">GET requests can be cached.<\/td>\n<td class=\"text-leftalign\">POST requests are never cached.<\/td>\n<\/tr>\n<tr>\n<td class=\"text-leftalign\">GET requests remain in the browser history.<\/td>\n<td class=\"text-leftalign\">POST requests do not remain in the browser history.<\/td>\n<\/tr>\n<tr>\n<td class=\"text-leftalign\">Easier to hack for script kiddies.<\/td>\n<td class=\"text-leftalign\">More difficult to hack.<\/td>\n<\/tr>\n<tr>\n<td class=\"text-leftalign\">Restrictions on form data type. Only ASCII characters<br \/>\nallowed.<\/td>\n<td class=\"text-leftalign\">No restrictions. Binary data is also allowed.<\/td>\n<\/tr>\n<tr>\n<td class=\"text-leftalign\">GET requests can be bookmarked.<\/td>\n<td class=\"text-leftalign\">POST requests cannot be bookmarked.<\/td>\n<\/tr>\n<tr>\n<td class=\"text-leftalign\">GET is less secure compared to POST because data sent<br \/>\nis part of the URL. So it\u2019s saved in browser history<br \/>\nand server logs in plaintext.<\/td>\n<td class=\"text-leftalign\">POST is a little safer than GET because the parameters are not stored in browser history or in web server logs.<\/td>\n<\/tr>\n<tr>\n<td class=\"text-leftalign\">GET requests have length limitations.<\/td>\n<td class=\"text-leftalign\">POST requests have no limitations on data length .<\/td>\n<\/tr>\n<tr>\n<td class=\"text-leftalign\">GET method should not be used when<br \/>\nsending passwords or other sensitive data.<br \/>\nGET requests is only used to request data (not modify).<\/td>\n<td class=\"text-leftalign\">POST method used when sending passwords or other sensitive data.<\/td>\n<\/tr>\n<tr>\n<td class=\"text-leftalign\">\n<div class=\"TextHeading\">\n<div class=\"hddn\">\n<h2 id=\"sample-code\" class=\"color-purple\">Sample Code<\/h2>\n<div class=\"code-embed-wrapper\"> <div class=\"code-embed-infos\"> <\/div> <pre class=\"language-markup code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-markup code-embed-code\"><!DOCTYPE html> <br\/><html lang=&quot;en&quot;> <br\/><head><br\/> <title>Example of PHP GET method<\/title> <br\/><\/head> <br\/><body> <br\/><?php<br\/> if(isset($_GET[&quot;name&quot;])){<br\/> echo &quot;<p>Hi, &quot; . $_GET[&quot;name&quot;] . &quot;<\/p>&quot;; <br\/>} ?><br\/> <form method=&quot;get&quot; action=&quot;<?<br\/>php echo $_SERVER[&quot;PHP_SELF&quot;];?>&quot;><br\/> <label for=&quot;inputName&quot;>Name:<\/label> <br\/><input type=&quot;text&quot; name=&quot;name&quot; id=&quot;inputName&quot;><br\/> <input type=&quot;submit&quot; value=&quot;Submit&quot;> <br\/><\/form> <br\/><\/body><\/code><\/pre> <\/div>\n<\/div>\n<\/div>\n<div class=\"CodeContent\">\n<div class=\"hddn\"><\/div>\n<\/div>\n<\/td>\n<td class=\"text-leftalign\">\n<div class=\"TextHeading\">\n<div class=\"hddn\">\n<h2 id=\"sample-code-2\" class=\"color-purple\">Sample Code<\/h2>\n<\/div>\n<\/div>\n<div class=\"CodeContent\">\n<div class=\"hddn\">\n<figure class=\"highlight\"><div class=\"code-embed-wrapper\"> <div class=\"code-embed-infos\"> <\/div> <pre class=\"language-markup code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-markup code-embed-code\"><!DOCTYPE html> <br\/><html lang=&quot;en&quot;><br\/> <head> <br\/><title>Example of PHP POST method<\/title><br\/> <\/head> <body> <br\/><?php <br\/>if(isset($_POST[&quot;name&quot;])){ <br\/>echo &quot;<p>Hi, &quot; . $_POST[&quot;name&quot;] . &quot;<\/p>&quot;; } <br\/>?> <br\/><form method=&quot;post&quot; action=&quot;<br\/><?php echo $_SERVER[&quot;PHP_SELF&quot;];?<br\/>>&quot;> <br\/><label for=&quot;inputName&quot;>Name:<\/label> <br\/><input type=&quot;text&quot; name=&quot;name&quot; id=&quot;inputName&quot;><br\/> <input type=&quot;submit&quot; value=&quot;Submit&quot;><br\/> <\/form><br\/> <\/body><\/code><\/pre> <\/div><\/figure>\n<\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Answer : GET requests can be cached&#8230;<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8182],"tags":[5432,8217,195,491,7383,7352,199,214,198,5940,290,205,8354,8376,8359,8386,8380,8364,8366,8388,8378,8361,8375,8381,8369,8387,8360,8371,15934,8368,8365,8355,8353,8385,8374,8384,8377,8358,8356,8216,8382,8362,8357,8363,196,212,7677,5941,8367,215,207,8214,204,208,1744,8215,200,197,284,280,8372,8373,8370,8383,8379,216],"class_list":["post-1148","post","type-post","status-publish","format-standard","hentry","category-php","tag-3i-infotech-limited-interview-questions-and-answers","tag-accel-frontline-ltd-interview-questions-and-answers","tag-accenture-interview-questions-and-answers","tag-applied-materials-interview-questions-and-answers","tag-brillio-technologies-pvt-ltd-interview-questions-and-answers","tag-cactus-communications-interview-questions-and-answers","tag-casting-networks-india-pvt-limited-interview-questions-and-answers","tag-cgi-group-inc-interview-questions-and-answers","tag-chetu-interview-questions-and-answers","tag-csg-international-interview-questions-and-answers","tag-cybage-interview-questions-and-answers","tag-dell-international-services-india-pvt-ltd-interview-questions-and-answers","tag-dget-and-post","tag-diff-between-get-and-post","tag-difference-between-get-and-post","tag-difference-between-get-and-post-in-html","tag-difference-between-get-and-post-in-java","tag-difference-between-get-and-post-in-php","tag-difference-between-get-and-post-method","tag-difference-between-get-and-post-method-in-htm","tag-difference-between-get-and-post-method-in-java","tag-difference-between-get-and-post-method-in-php","tag-difference-between-get-and-post-method-in-php-with-example","tag-difference-between-get-and-post-request","tag-difference-between-http-get-and-post","tag-difference-get-and-post","tag-example-of-get-and-post-method","tag-example-of-get-and-post-method-in-php","tag-geekyants-interview-questions-and-answers","tag-get-and-post-difference","tag-get-and-post-examples","tag-get-and-post-in-php","tag-get-and-post-metho","tag-get-and-post-method-in-c","tag-get-and-post-method-in-html","tag-get-and-post-method-in-html-examples","tag-get-and-post-method-in-java","tag-get-and-post-method-in-php","tag-get-and-post-request","tag-harbinger-systems-interview-questions-and-answers","tag-html-get-and-post","tag-html-get-and-post-example","tag-http-get-and-post","tag-http-get-and-post-method","tag-ibm-interview-questions-and-answers","tag-indecomm-global-services-interview-questions-and-answers","tag-info-edge-interview-questions-and-answers","tag-infogain-interview-questions-and-answers","tag-javascript-get-and-post","tag-maintec-technologies-pvt-ltd-interview-questions-and-answers","tag-mphasis-interview-questions-and-answers","tag-net-solutions-interview-questions-and-answers","tag-oracle-corporation-interview-questions-and-answers","tag-prokarma-softech-pvt-ltd-interview-questions-and-answers","tag-raqmiyat-information-technologies-pvt-ltd-interview-questions-and-answers","tag-sopra-steria-interview-questions-and-answers","tag-tech-mahindra-interview-questions-and-answers","tag-unitedhealth-group-interview-questions-and-answers","tag-valuelabs-interview-questions-and-answers","tag-virtusa-consulting-services-pvt-ltd-interview-questions-and-answers","tag-what-is-get-and-post","tag-what-is-get-and-post-method","tag-what-is-the-difference-between-get-and-post","tag-what-is-the-difference-between-get-and-post-method","tag-when-to-use-get-and-post","tag-wipro-interview-questions-and-answers"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Difference Between Get and Post Method in PHP ? - PHP<\/title>\n<meta name=\"description\" content=\"Difference Between Get and Post Method in PHP ? - GET requests can be cached. GET requests remain in the browser history\" \/>\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.wikitechy.com\/interview-questions\/php\/difference-between-get-and-post-method-in-php\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Difference Between Get and Post Method in PHP ? - PHP\" \/>\n<meta property=\"og:description\" content=\"Difference Between Get and Post Method in PHP ? - GET requests can be cached. GET requests remain in the browser history\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.wikitechy.com\/interview-questions\/php\/difference-between-get-and-post-method-in-php\/\" \/>\n<meta property=\"og:site_name\" content=\"Wikitechy\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-21T13:30:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-09-08T11:31:23+00:00\" \/>\n<meta name=\"author\" content=\"Editor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Editor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/php\\\/difference-between-get-and-post-method-in-php\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/php\\\/difference-between-get-and-post-method-in-php\\\/\"},\"author\":{\"name\":\"Editor\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#\\\/schema\\\/person\\\/4d5a581fb5470d1560324bddc5e8b757\"},\"headline\":\"Difference Between Get and Post Method in PHP ?\",\"datePublished\":\"2021-07-21T13:30:53+00:00\",\"dateModified\":\"2021-09-08T11:31:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/php\\\/difference-between-get-and-post-method-in-php\\\/\"},\"wordCount\":428,\"commentCount\":0,\"keywords\":[\"3i Infotech Limited interview questions and answers\",\"Accel Frontline Ltd interview questions and answers\",\"Accenture interview questions and answers\",\"Applied Materials interview questions and answers\",\"Brillio Technologies Pvt Ltd interview questions and answers\",\"Cactus Communications interview questions and answers\",\"CASTING NETWORKS INDIA PVT LIMITED interview questions and answers\",\"CGI Group Inc interview questions and answers\",\"Chetu interview questions and answers\",\"CSG International interview questions and answers\",\"Cybage interview questions and answers\",\"Dell International Services India Pvt Ltd interview questions and answers\",\"dget and post\",\"diff between get and post\",\"difference between get and post\",\"difference between get and post in html\",\"difference between get and post in java\",\"difference between get and post in php\",\"difference between get and post method\",\"difference between get and post method in htm\",\"difference between get and post method in java\",\"difference between get and post method in php\",\"difference between get and post method in php with example\",\"difference between get and post request\",\"difference between http get and post\",\"difference get and post\",\"example of get and post method\",\"example of get and post method in php\",\"geekyants interview questions and answers\",\"get and post difference\",\"get and post examples\",\"get and post in php\",\"get and post metho\",\"get and post method in c#\",\"get and post method in html\",\"get and post method in html examples\",\"get and post method in java\",\"get and post method in php\",\"get and post request\",\"Harbinger Systems interview questions and answers\",\"html get and post\",\"html get and post example\",\"http get and post\",\"http get and post method\",\"IBM interview questions and answers\",\"Indecomm Global Services interview questions and answers\",\"Info Edge interview questions and answers\",\"Infogain interview questions and answers\",\"javascript get and post\",\"Maintec Technologies Pvt Ltd interview questions and answers\",\"Mphasis interview questions and answers\",\"Net Solutions interview questions and answers\",\"Oracle Corporation interview questions and answers\",\"Prokarma Softech Pvt Ltd interview questions and answers\",\"Raqmiyat Information Technologies Pvt Ltd interview questions and answers\",\"Sopra Steria interview questions and answers\",\"Tech Mahindra interview questions and answers\",\"UnitedHealth Group interview questions and answers\",\"ValueLabs interview questions and answers\",\"Virtusa Consulting Services Pvt Ltd interview questions and answers\",\"what is get and post\",\"what is get and post method\",\"what is the difference between get and post\",\"what is the difference between get and post method\",\"when to use get and post\",\"Wipro interview questions and answers\"],\"articleSection\":[\"PHP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/php\\\/difference-between-get-and-post-method-in-php\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/php\\\/difference-between-get-and-post-method-in-php\\\/\",\"url\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/php\\\/difference-between-get-and-post-method-in-php\\\/\",\"name\":\"Difference Between Get and Post Method in PHP ? - PHP\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#website\"},\"datePublished\":\"2021-07-21T13:30:53+00:00\",\"dateModified\":\"2021-09-08T11:31:23+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#\\\/schema\\\/person\\\/4d5a581fb5470d1560324bddc5e8b757\"},\"description\":\"Difference Between Get and Post Method in PHP ? - GET requests can be cached. GET requests remain in the browser history\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/php\\\/difference-between-get-and-post-method-in-php\\\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#website\",\"url\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/\",\"name\":\"Wikitechy\",\"description\":\"Interview Questions\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#\\\/schema\\\/person\\\/4d5a581fb5470d1560324bddc5e8b757\",\"name\":\"Editor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g\",\"caption\":\"Editor\"},\"url\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/author\\\/editor\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Difference Between Get and Post Method in PHP ? - PHP","description":"Difference Between Get and Post Method in PHP ? - GET requests can be cached. GET requests remain in the browser history","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.wikitechy.com\/interview-questions\/php\/difference-between-get-and-post-method-in-php\/","og_locale":"en_US","og_type":"article","og_title":"Difference Between Get and Post Method in PHP ? - PHP","og_description":"Difference Between Get and Post Method in PHP ? - GET requests can be cached. GET requests remain in the browser history","og_url":"https:\/\/www.wikitechy.com\/interview-questions\/php\/difference-between-get-and-post-method-in-php\/","og_site_name":"Wikitechy","article_published_time":"2021-07-21T13:30:53+00:00","article_modified_time":"2021-09-08T11:31:23+00:00","author":"Editor","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Editor","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.wikitechy.com\/interview-questions\/php\/difference-between-get-and-post-method-in-php\/#article","isPartOf":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/php\/difference-between-get-and-post-method-in-php\/"},"author":{"name":"Editor","@id":"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/4d5a581fb5470d1560324bddc5e8b757"},"headline":"Difference Between Get and Post Method in PHP ?","datePublished":"2021-07-21T13:30:53+00:00","dateModified":"2021-09-08T11:31:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/php\/difference-between-get-and-post-method-in-php\/"},"wordCount":428,"commentCount":0,"keywords":["3i Infotech Limited interview questions and answers","Accel Frontline Ltd interview questions and answers","Accenture interview questions and answers","Applied Materials interview questions and answers","Brillio Technologies Pvt Ltd interview questions and answers","Cactus Communications interview questions and answers","CASTING NETWORKS INDIA PVT LIMITED interview questions and answers","CGI Group Inc interview questions and answers","Chetu interview questions and answers","CSG International interview questions and answers","Cybage interview questions and answers","Dell International Services India Pvt Ltd interview questions and answers","dget and post","diff between get and post","difference between get and post","difference between get and post in html","difference between get and post in java","difference between get and post in php","difference between get and post method","difference between get and post method in htm","difference between get and post method in java","difference between get and post method in php","difference between get and post method in php with example","difference between get and post request","difference between http get and post","difference get and post","example of get and post method","example of get and post method in php","geekyants interview questions and answers","get and post difference","get and post examples","get and post in php","get and post metho","get and post method in c#","get and post method in html","get and post method in html examples","get and post method in java","get and post method in php","get and post request","Harbinger Systems interview questions and answers","html get and post","html get and post example","http get and post","http get and post method","IBM interview questions and answers","Indecomm Global Services interview questions and answers","Info Edge interview questions and answers","Infogain interview questions and answers","javascript get and post","Maintec Technologies Pvt Ltd interview questions and answers","Mphasis interview questions and answers","Net Solutions interview questions and answers","Oracle Corporation interview questions and answers","Prokarma Softech Pvt Ltd interview questions and answers","Raqmiyat Information Technologies Pvt Ltd interview questions and answers","Sopra Steria interview questions and answers","Tech Mahindra interview questions and answers","UnitedHealth Group interview questions and answers","ValueLabs interview questions and answers","Virtusa Consulting Services Pvt Ltd interview questions and answers","what is get and post","what is get and post method","what is the difference between get and post","what is the difference between get and post method","when to use get and post","Wipro interview questions and answers"],"articleSection":["PHP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.wikitechy.com\/interview-questions\/php\/difference-between-get-and-post-method-in-php\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.wikitechy.com\/interview-questions\/php\/difference-between-get-and-post-method-in-php\/","url":"https:\/\/www.wikitechy.com\/interview-questions\/php\/difference-between-get-and-post-method-in-php\/","name":"Difference Between Get and Post Method in PHP ? - PHP","isPartOf":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/#website"},"datePublished":"2021-07-21T13:30:53+00:00","dateModified":"2021-09-08T11:31:23+00:00","author":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/4d5a581fb5470d1560324bddc5e8b757"},"description":"Difference Between Get and Post Method in PHP ? - GET requests can be cached. GET requests remain in the browser history","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.wikitechy.com\/interview-questions\/php\/difference-between-get-and-post-method-in-php\/"]}]},{"@type":"WebSite","@id":"https:\/\/www.wikitechy.com\/interview-questions\/#website","url":"https:\/\/www.wikitechy.com\/interview-questions\/","name":"Wikitechy","description":"Interview Questions","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.wikitechy.com\/interview-questions\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/4d5a581fb5470d1560324bddc5e8b757","name":"Editor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g","caption":"Editor"},"url":"https:\/\/www.wikitechy.com\/interview-questions\/author\/editor\/"}]}},"_links":{"self":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts\/1148","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/comments?post=1148"}],"version-history":[{"count":3,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts\/1148\/revisions"}],"predecessor-version":[{"id":3038,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts\/1148\/revisions\/3038"}],"wp:attachment":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/media?parent=1148"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/categories?post=1148"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/tags?post=1148"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}