{"id":305,"date":"2017-06-03T08:08:05","date_gmt":"2017-06-03T08:08:05","guid":{"rendered":"http:\/\/www.gologica.com\/blog\/?p=305"},"modified":"2025-04-06T01:29:44","modified_gmt":"2025-04-06T01:29:44","slug":"php-mysql-interview-questions-and-answers","status":"publish","type":"post","link":"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/","title":{"rendered":"PHP MySQL Interview Questions and Answers"},"content":{"rendered":"<p><strong>What is MySQL? <\/strong><\/p>\n<p>MySQL is an open source DBMS which is built, supported and distributed by MySQL AB (now acquired by Oracle)<\/p>\n<p><strong>What are the technical features of MySQL? <\/strong><\/p>\n<p>MySQL database software is a client or server system which includes<\/p>\n<p>Multithreaded SQL server supporting various client programs and libraries<\/p>\n<p>Different backend<\/p>\n<p>Wide range of application programming interfaces and<\/p>\n<p>Administrative tools.<\/p>\n<p><strong>Why MySQL is used?<\/strong><\/p>\n<p>MySQL database server is reliable, fast and very easy to use.\u00a0 This software can be downloaded as freeware and can be downloaded from the internet.<\/p>\n<table style=\"background: #d9dde2;\">\n<tbody>\n<tr>\n<td style=\"border: 1px solid black;\"><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><a href=\"https:\/\/www.gologica.com\/course\/php-mysql\/\"><img fetchpriority=\"high\" decoding=\"async\" class=\"alignnone size-full wp-image-2908\" src=\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-1.jpg\" alt=\"PHP MySQL Training\" width=\"850\" height=\"200\" srcset=\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-1.jpg 850w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-1-460x108.jpg 460w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-1-768x181.jpg 768w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-1-100x24.jpg 100w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-1-600x141.jpg 600w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-1-120x28.jpg 120w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-1-310x73.jpg 310w\" sizes=\"(max-width: 850px) 100vw, 850px\" \/><\/a><\/p>\n<p><strong>What are Heap tables?<\/strong><\/p>\n<p>HEAP tables are present in memory and they are used for high speed storage on temporary<\/p>\n<p>basis.<\/p>\n<ul>\n<li>BLOB or TEXT fields are not allowed<\/li>\n<li>Only comparison operators can be used =, &lt;,&gt;, = &gt;,=&lt;<\/li>\n<li>AUTO_INCREMENT is not supported by HEAP tables<\/li>\n<li>Indexes should be NOT NULL<\/li>\n<\/ul>\n<p><strong>\u00a0What is the default port for MySQL Server?<\/strong><\/p>\n<p>The default port for MySQL server is 3306.<\/p>\n<p>MySQL.svg<\/p>\n<p>What are the advantages of MySQL when compared with Oracle?<\/p>\n<p>MySQL is open source software which is available at any time and has no cost involved.<\/p>\n<p>MySQL is portable<\/p>\n<p>GUI with command prompt.<\/p>\n<p>Administration is supported using MySQL Query Browser<\/p>\n<p><strong>Differentiate between FLOAT and DOUBLE? <\/strong><\/p>\n<p>Following are differences for FLOAT and DOUBLE:<\/p>\n<ul>\n<li>Floating point numbers are stored in FLOAT with eight place accuracy and it has four bytes.<\/li>\n<li>Floating point numbers are stored in DOUBLE with accuracy of 18 places and it has eight bytes.<\/li>\n<\/ul>\n<p><strong>Differentiate CHAR_LENGTH and LENGTH?<\/strong><\/p>\n<p>CHAR_LENGTH\u00a0 is character count whereas the LENGTH is byte count. The numbers are same for Latin characters but they are different for Unicode and other encodings.<\/p>\n<p><strong>How to represent ENUMs and SETs internally? <\/strong><\/p>\n<p>ENUMs and SETs are used to represent powers of two because of storage optimizations.<\/p>\n<p><strong>What is the usage of ENUMs in MySQL?<\/strong><\/p>\n<p>ENUM is a string object used to specify set of predefined values and that can be used during table creation.<\/p>\n<p>MySQL<\/p>\n<p>Create table size(name ENUM(&#8216;Small&#8217;, &#8216;Medium&#8217;,&#8217;Large&#8217;);<\/p>\n<p><strong>Who is the father of PHP and explain the changes in PHP versions?<\/strong><\/p>\n<p>Rasmus Lerdorf is known as the father of PHP.PHP\/FI 2.0 is an early and no longer supported version of PHP. PHP 3<\/p>\n<p>is the successor to PHP\/FI 2.0 and is a lot nicer. PHP 4 is the current<\/p>\n<p>generation of PHP, which uses the<\/p>\n<p>Zend engine<\/p>\n<p>under the<\/p>\n<p>hood. PHP 5 uses<\/p>\n<p>Zend engine 2 which,<\/p>\n<p>among other things, offers many additionalOOP features<\/p>\n<p><strong>How can we submit a form without a submit button?<\/strong><\/p>\n<p>The main idea behind this is to use Java script submit() function in<\/p>\n<p>order to submit the form without explicitly clicking any submit button.<\/p>\n<p>You can attach the document.formname.submit() method to onclick,<\/p>\n<p>onchange events of different inputs and perform the form submission. you<\/p>\n<p>can even built a timer function where you can automatically submit the<\/p>\n<p>form after xx seconds once the loading is done (can be seen in online<\/p>\n<p>test sites).<\/p>\n<p><strong>In how many ways we can retrieve the data in the result set of<\/strong><\/p>\n<p><strong>MySQL using PHP?<\/strong><\/p>\n<p>You can do it by 4 Ways1. mysql_fetch_row.<\/p>\n<ol start=\"2\">\n<li>mysql_fetch_array<\/li>\n<li>mysql_fetch_object<\/li>\n<li>mysql_fetch_assoc<\/li>\n<\/ol>\n<p><strong>How can we create a database using PHP and MySQL?<\/strong><\/p>\n<p>We can create MySQL database with the use of<\/p>\n<p>mysql_create_db(\u201cDatabase Name\u201d)<\/p>\n<p><strong>Can we use include (\u201dabc.PHP\u201d) two times in a PHP page \u201cmakeit.PHP\u201d?<\/strong><\/p>\n<p>Yes we can use include() more than one time in any page though it is<\/p>\n<p>not a very good practice.<\/p>\n<p><strong>What storage engines are used in MySQL? <\/strong><\/p>\n<p>Storage engines are called table types and data is stored in files using various techniques.<\/p>\n<p>Technique involves:<\/p>\n<p>Storage mechanism<\/p>\n<p>Locking levels<\/p>\n<p>Indexing<\/p>\n<p>Capabilities and functions.<\/p>\n<p><strong>What does a TIMESTAMP do on UPDATE CURRENT_TIMESTAMP data type?<\/strong><\/p>\n<p>TIMESTAMP column is updated with Zero when the table is created.\u00a0 UPDATE CURRENT_TIMESTAMP modifier updates the timestamp field to\u00a0 current time whenever there is a change in other fields of the table.<\/p>\n<table style=\"background: #d9dde2;\">\n<tbody>\n<tr>\n<td style=\"border: 1px solid black;\"><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><a href=\"https:\/\/www.gologica.com\/course\/php-mysql\/\"><img decoding=\"async\" class=\"alignnone size-full wp-image-2909\" src=\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-2.jpg\" alt=\"PHP MySQL Online Training\" width=\"850\" height=\"200\" srcset=\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-2.jpg 850w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-2-460x108.jpg 460w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-2-768x181.jpg 768w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-2-100x24.jpg 100w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-2-600x141.jpg 600w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-2-120x28.jpg 120w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions-and-Answers-2-310x73.jpg 310w\" sizes=\"(max-width: 850px) 100vw, 850px\" \/><\/a><\/p>\n<p><strong>What is the difference between primary key and candidate key?<\/strong><\/p>\n<p>Every row of a table is identified uniquely by primary key. There is only one primary key for a table.<\/p>\n<p>Primary Key is also a candidate key. By common convention, candidate key can be designated as primary and which can be used for any foreign key references.<\/p>\n<p><strong>How do you login to MySql using Unix shell?<\/strong><\/p>\n<p>We can login through this command:<\/p>\n<p># [mysqldir]\/bin\/mysql -h hostname -u &lt;UserName&gt; -p &lt;password&gt;<\/p>\n<p><strong>How do you control the max size of a HEAP table?<\/strong><\/p>\n<p>Maximum size of Heal table can be controlled by MySQL config variable called max_heap_table_size.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is MySQL? MySQL is an open source DBMS which is built, supported and distributed by MySQL AB (now acquired &hellip;<\/p>\n","protected":false},"author":1,"featured_media":2219,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"pmpro_default_level":"","footnotes":""},"categories":[928],"tags":[],"coauthors":[182],"class_list":["post-305","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-digital-marketing","pmpro-has-access","user-has-not-earned"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PHP MySQL Interview Questions and Answers - GoLogica<\/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:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP MySQL Interview Questions and Answers - GoLogica\" \/>\n<meta property=\"og:description\" content=\"What is MySQL? MySQL is an open source DBMS which is built, supported and distributed by MySQL AB (now acquired &hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/\" \/>\n<meta property=\"og:site_name\" content=\"GoLogica\" \/>\n<meta property=\"article:published_time\" content=\"2017-06-03T08:08:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-06T01:29:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"175\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\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:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62\"},\"headline\":\"PHP MySQL Interview Questions and Answers\",\"datePublished\":\"2017-06-03T08:08:05+00:00\",\"dateModified\":\"2025-04-06T01:29:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/\"},\"wordCount\":775,\"image\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions.jpg\",\"articleSection\":[\"Digital Marketing\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/\",\"url\":\"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/\",\"name\":\"PHP MySQL Interview Questions and Answers - GoLogica\",\"isPartOf\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions.jpg\",\"datePublished\":\"2017-06-03T08:08:05+00:00\",\"dateModified\":\"2025-04-06T01:29:44+00:00\",\"author\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#primaryimage\",\"url\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions.jpg\",\"contentUrl\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions.jpg\",\"width\":300,\"height\":175,\"caption\":\"PHP MySQL Interview Questions\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.gologica.com\/elearning\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP MySQL Interview Questions and Answers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/#website\",\"url\":\"https:\/\/www.gologica.com\/elearning\/\",\"name\":\"GoLogica\",\"description\":\"E-Learning Portal\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.gologica.com\/elearning\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/image\/d0ab308492a1bfcbec1a1ce1637996db\",\"url\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/themes\/wplms\/assets\/images\/avatar.jpg\",\"contentUrl\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/themes\/wplms\/assets\/images\/avatar.jpg\",\"caption\":\"admin\"},\"url\":\"https:\/\/www.gologica.com\/elearning\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PHP MySQL Interview Questions and Answers - GoLogica","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.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/","og_locale":"en_US","og_type":"article","og_title":"PHP MySQL Interview Questions and Answers - GoLogica","og_description":"What is MySQL? MySQL is an open source DBMS which is built, supported and distributed by MySQL AB (now acquired &hellip;","og_url":"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/","og_site_name":"GoLogica","article_published_time":"2017-06-03T08:08:05+00:00","article_modified_time":"2025-04-06T01:29:44+00:00","og_image":[{"width":300,"height":175,"url":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#article","isPartOf":{"@id":"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/"},"author":{"name":"admin","@id":"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62"},"headline":"PHP MySQL Interview Questions and Answers","datePublished":"2017-06-03T08:08:05+00:00","dateModified":"2025-04-06T01:29:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/"},"wordCount":775,"image":{"@id":"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#primaryimage"},"thumbnailUrl":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions.jpg","articleSection":["Digital Marketing"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/","url":"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/","name":"PHP MySQL Interview Questions and Answers - GoLogica","isPartOf":{"@id":"https:\/\/www.gologica.com\/elearning\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#primaryimage"},"image":{"@id":"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#primaryimage"},"thumbnailUrl":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions.jpg","datePublished":"2017-06-03T08:08:05+00:00","dateModified":"2025-04-06T01:29:44+00:00","author":{"@id":"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62"},"breadcrumb":{"@id":"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#primaryimage","url":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions.jpg","contentUrl":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/PHP-MySQL-Interview-Questions.jpg","width":300,"height":175,"caption":"PHP MySQL Interview Questions"},{"@type":"BreadcrumbList","@id":"https:\/\/www.gologica.com\/elearning\/php-mysql-interview-questions-and-answers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.gologica.com\/elearning\/"},{"@type":"ListItem","position":2,"name":"PHP MySQL Interview Questions and Answers"}]},{"@type":"WebSite","@id":"https:\/\/www.gologica.com\/elearning\/#website","url":"https:\/\/www.gologica.com\/elearning\/","name":"GoLogica","description":"E-Learning Portal","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.gologica.com\/elearning\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/image\/d0ab308492a1bfcbec1a1ce1637996db","url":"https:\/\/www.gologica.com\/elearning\/wp-content\/themes\/wplms\/assets\/images\/avatar.jpg","contentUrl":"https:\/\/www.gologica.com\/elearning\/wp-content\/themes\/wplms\/assets\/images\/avatar.jpg","caption":"admin"},"url":"https:\/\/www.gologica.com\/elearning\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/posts\/305","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/comments?post=305"}],"version-history":[{"count":4,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/posts\/305\/revisions"}],"predecessor-version":[{"id":2910,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/posts\/305\/revisions\/2910"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/media\/2219"}],"wp:attachment":[{"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/media?parent=305"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/categories?post=305"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/tags?post=305"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/coauthors?post=305"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}