{"id":14957,"date":"2016-10-24T16:15:56","date_gmt":"2016-10-24T13:15:56","guid":{"rendered":"http:\/\/www.webcodegeeks.com\/?p=14957"},"modified":"2018-01-09T10:16:00","modified_gmt":"2018-01-09T08:16:00","slug":"php-array-string-conversion","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/","title":{"rendered":"PHP Array to String Conversion"},"content":{"rendered":"<p>Arrays are very popular in programming languages, as they are widely used by programmers to perform different tasks. Arrays are part of the first few topics every new developer or programmer learns.<\/p>\n<p>In this example we will learn about arrays, what they are, how to use and manipulate them.\u00a0For this example we will use:<\/p>\n<ol>\n<li>A computer with PHP&gt;= 5.5 installed<\/li>\n<li>notepad++<\/li>\n<\/ol>\n<h2>1. Getting Started<\/h2>\n<p>Arrays are a very popular feature of any programming language, because they let you work with large amounts of similar data.\u00a0In PHP an array is actually an ordered map. A map is a type that associates values to keys.<br \/>\n&nbsp;<br \/>\n[ulp id=&#8217;8njY7i2QRy6sg8pg&#8217;]<br \/>\n&nbsp;<br \/>\nFor instance, let&#8217;s say you are writing a script that stores the names of players in a football match, rather than having to create 22 different variables holding the name of each player in a match, you can easily create a single array that holds all the variables. Initializing the array is as simple as looping through it and setting the value of each element in the array.<br \/>\nPHP supports two types of array<\/p>\n<ul>\n<li>Indexed Arrays: These are arrays where each element is referenced by a numeric index, usually starting from zero. For example the first element in an array has an index of zero.<\/li>\n<li>Associative Arrays: This type of array is also reffered to as a hash or map. With associative arrays, each element is referenced by a string index.<\/li>\n<\/ul>\n<h3>1.1 Creating Arrays In PHP<\/h3>\n<p>The easiest way to create an array in PHP is to use PHP <code>array()<\/code> method. It takes a list of values and creates an array containing those values.<\/p>\n<p><span style=\"text-decoration: underline;\"><em>index.php<\/em><\/span><\/p>\n<pre class=\"brush:php; highlight:[25,23]\">&lt;&amp;;!DOCTYPE html&gt; \r\n\r\n&lt;html lang=eng&gt; \r\n\r\n\t&lt;head&gt; \t\r\n\r\n&lt;style&gt; \t\r\nhtml, body{ \twidth:100%; \t\r\nheight:100%; \r\n\tmargin:0%; \r\nfont-family:\"helvetica\",\"verdana\",\"calibri\", \"san serif\"; \toverflow:hidden;\r\n \tpadding:0%; \r\n\tborder:0%; \r\n\t} \t\r\n \t&lt;\/style&gt; \t \t\r\n\r\n\t&lt;meta charset=\"utf-8\" \/&gt; \t\t&lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, target-densitydpi=device-dpi\"\/&gt; \t \t&lt;title&gt;\r\nArray example\r\n&lt;\/title&gt; \t\r\n&lt;\/head&gt; \r\n&lt;body&gt; \r\n&lt;?php\r\n$names=array(\"jack\",\"red\",\"white\",\"snow\",\"Jon\");\r\n$player = array(\"name\"=&gt;\"jack\",\"position\"=&gt;\"striker\",\"club\"=&gt;\"MAN U\");\r\necho \" $names[0] is a player with $player[club] and is position is $player[position]&lt;br&gt; \";\r\n\r\n?&gt;\r\n\r\n\r\n &lt;\/body&gt; \r\n&lt;\/html&gt; \r\n<\/pre>\n<p>In line 23 we use the <code>array()<\/code> method to create an array which is assigned to variable name. We can access each element in the array through the variable <code>$name<\/code>.<br \/>\nIn line 25 we create an associative array, where each element is identified by a string index rather than a number.<\/p>\n<h3>1.2 Accessing array elements<\/h3>\n<p>Once an array has been created, you access the elements inside it, by writing the variable name followed by the index of the element in square brackets. If you want to access the elements of an associative array, simply use string indices rather than numbers.<\/p>\n<p><span style=\"text-decoration: underline;\"><em>index2.php<\/em><\/span><\/p>\n<pre class=\"brush:php; highlight:[21,23]\">&lt;!DOCTYPE html&gt; \r\n\r\n&lt;html lang=eng&gt; \r\n\r\n\t&lt;head&gt; \t\r\n\r\n&lt;style&gt; \t\r\nhtml, body{ \twidth:100%; \t\r\nheight:100%; \r\n\tmargin:0%; \r\nfont-family:\"helvetica\",\"verdana\",\"calibri\", \"san serif\"; \toverflow:hidden;\r\n \tpadding:0%; \r\n\tborder:0%; \r\n\t} \t\r\n \t&lt;\/style&gt; \t \t\r\n\r\n\t&lt;meta charset=\"utf-8\" \/&gt; \t\t&lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, target-densitydpi=device-dpi\"\/&gt; \t \t&lt;title&gt;\r\nArray example\r\n&lt;\/title&gt; \t\r\n&lt;\/head&gt; \r\n&lt;body&gt; \r\n&lt;?php\r\n$names=array(\"jack\",\"red\",\"white\",\"snow\",\"Jon\");\r\n$player = array(\"name\"=&gt;\"jack\",\"position\"=&gt;\"striker\",\"club\"=&gt;\"MAN U\");\r\necho \" $names[0] is a player with $player[club] and is position is $player[position]&lt;br&gt; \";\r\n\r\n?&gt;\r\n\r\n\r\n &lt;\/body&gt; \r\n&lt;\/html&gt; \r\n<\/pre>\n<h3>1.3 Converting Arrays To String In PHP<\/h3>\n<p>PHP provides a function that converts an array to a string. If you want to convert an array to a string you use the <code> implode() <\/code> function. This takes two arguements: the string of characters to place between each element in the string and the array containing the elements to place in the string.<\/p>\n<p><span style=\"text-decoration: underline;\"><em>index3.php<\/em><\/span><\/p>\n<pre class=\"brush:php; highlight:[21,23]\">&lt;!DOCTYPE html&gt; \r\n\r\n&lt;html lang=eng&gt; \r\n\r\n\t&lt;head&gt; \t\r\n\r\n&lt;style&gt; \t\r\nhtml, body{ \twidth:100%; \t\r\nheight:100%; \r\n\tmargin:0%; \r\nfont-family:\"helvetica\",\"verdana\",\"calibri\", \"san serif\"; \toverflow:hidden;\r\n \tpadding:0%; \r\n\tborder:0%; \r\n\t} \t\r\n \t&lt;\/style&gt; \t \t\r\n\r\n\t&lt;meta charset=\"utf-8\" \/&gt; \t\t&lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, target-densitydpi=device-dpi\"\/&gt; \t \t&lt;title&gt;\r\nArray example\r\n&lt;\/title&gt; \t\r\n&lt;\/head&gt; \r\n&lt;body&gt; \r\n&lt;?php\r\n$names=array(\"jack\",\"red\",\"white\",\"snow\",\"Jon\"); \/\/\r\n$player = array(\"name\"=&gt;\"jack\",\"position\"=&gt;\"striker\",\"club\"=&gt;\"MAN U\"); \/\/\r\necho \"The names of the players are \". implode($names , \",\");\/\/implode converts an array to a string\r\n\r\n?&gt;\r\n\r\n\r\n &lt;\/body&gt; \r\n&lt;\/html&gt; \r\n<\/pre>\n<p>In the code above, the array <code> names<\/code> and a comma are passed to the <code>implode<\/code> function.<\/p>\n<h2>2. Summary<\/h2>\n<p>In this example we learnt about arrays in general, what are they, and why they are so important in programming languages. We also learnt how to create, maniputale and use them in PHP.<\/p>\n<h2>3. Download the source code<\/h2>\n<p>Download the source code for this tutorial:<\/p>\n<div class=\"download\"><strong>Download<\/strong><br \/>\nYou can download the full source code of this example here:\u00a0<strong><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/10\/phparraytostringconversion.zip\">phparraytostringconversion<\/a><\/strong><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Arrays are very popular in programming languages, as they are widely used by programmers to perform different tasks. Arrays are part of the first few topics every new developer or programmer learns. In this example we will learn about arrays, what they are, how to use and manipulate them.\u00a0For this example we will use: A &hellip;<\/p>\n","protected":false},"author":164,"featured_media":930,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[396,122],"class_list":["post-14957","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php","tag-array-to-string-conversion","tag-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PHP Array to String Conversion - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Arrays are very popular in programming languages, as they are widely used by programmers to perform different tasks. Arrays are part of the first few\" \/>\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.webcodegeeks.com\/php\/php-array-string-conversion\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP Array to String Conversion - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Arrays are very popular in programming languages, as they are widely used by programmers to perform different tasks. Arrays are part of the first few\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2016-10-24T13:15:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-09T08:16:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Olayemi Odunayo\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Olayemi Odunayo\" \/>\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.webcodegeeks.com\/php\/php-array-string-conversion\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/\"},\"author\":{\"name\":\"Olayemi Odunayo\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/417918d9b5811210265e8590509718b8\"},\"headline\":\"PHP Array to String Conversion\",\"datePublished\":\"2016-10-24T13:15:56+00:00\",\"dateModified\":\"2018-01-09T08:16:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/\"},\"wordCount\":511,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg\",\"keywords\":[\"Array to string conversion\",\"php\"],\"articleSection\":[\"PHP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/\",\"name\":\"PHP Array to String Conversion - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg\",\"datePublished\":\"2016-10-24T13:15:56+00:00\",\"dateModified\":\"2018-01-09T08:16:00+00:00\",\"description\":\"Arrays are very popular in programming languages, as they are widely used by programmers to perform different tasks. Arrays are part of the first few\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#primaryimage\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/php\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"PHP Array to String Conversion\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"name\":\"Web Code Geeks\",\"description\":\"Web Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webcodegeeks\",\"https:\/\/x.com\/webcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/417918d9b5811210265e8590509718b8\",\"name\":\"Olayemi Odunayo\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/016b2a353262962fceecf5c274161cd9ef60fdf1593ec95e71d37f5fd9b444f6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/016b2a353262962fceecf5c274161cd9ef60fdf1593ec95e71d37f5fd9b444f6?s=96&d=mm&r=g\",\"caption\":\"Olayemi Odunayo\"},\"description\":\"I am a programmer and web developer, who has experience in developing websites and writing desktop and mobile applications. I have worked with both schematic and schemaless databases. I am also familiar with third party API and working with cloud servers. I do programming on the client side with Java, JavaScript, html, Ajax and CSS while I use PHP for server side programming.\",\"sameAs\":[\"https:\/\/www.webcodegeeks.com\/\"],\"url\":\"https:\/\/www.webcodegeeks.com\/author\/olayemi-odunayo\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PHP Array to String Conversion - Web Code Geeks - 2026","description":"Arrays are very popular in programming languages, as they are widely used by programmers to perform different tasks. Arrays are part of the first few","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.webcodegeeks.com\/php\/php-array-string-conversion\/","og_locale":"en_US","og_type":"article","og_title":"PHP Array to String Conversion - Web Code Geeks - 2026","og_description":"Arrays are very popular in programming languages, as they are widely used by programmers to perform different tasks. Arrays are part of the first few","og_url":"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_published_time":"2016-10-24T13:15:56+00:00","article_modified_time":"2018-01-09T08:16:00+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg","type":"image\/jpeg"}],"author":"Olayemi Odunayo","twitter_card":"summary_large_image","twitter_creator":"@webcodegeeks","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Olayemi Odunayo","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/"},"author":{"name":"Olayemi Odunayo","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/417918d9b5811210265e8590509718b8"},"headline":"PHP Array to String Conversion","datePublished":"2016-10-24T13:15:56+00:00","dateModified":"2018-01-09T08:16:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/"},"wordCount":511,"commentCount":0,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg","keywords":["Array to string conversion","php"],"articleSection":["PHP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/","url":"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/","name":"PHP Array to String Conversion - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg","datePublished":"2016-10-24T13:15:56+00:00","dateModified":"2018-01-09T08:16:00+00:00","description":"Arrays are very popular in programming languages, as they are widely used by programmers to perform different tasks. Arrays are part of the first few","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#primaryimage","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.webcodegeeks.com\/php\/php-array-string-conversion\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"PHP","item":"https:\/\/www.webcodegeeks.com\/category\/php\/"},{"@type":"ListItem","position":3,"name":"PHP Array to String Conversion"}]},{"@type":"WebSite","@id":"https:\/\/www.webcodegeeks.com\/#website","url":"https:\/\/www.webcodegeeks.com\/","name":"Web Code Geeks","description":"Web Developers Resource Center","publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.webcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webcodegeeks","https:\/\/x.com\/webcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/417918d9b5811210265e8590509718b8","name":"Olayemi Odunayo","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/016b2a353262962fceecf5c274161cd9ef60fdf1593ec95e71d37f5fd9b444f6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/016b2a353262962fceecf5c274161cd9ef60fdf1593ec95e71d37f5fd9b444f6?s=96&d=mm&r=g","caption":"Olayemi Odunayo"},"description":"I am a programmer and web developer, who has experience in developing websites and writing desktop and mobile applications. I have worked with both schematic and schemaless databases. I am also familiar with third party API and working with cloud servers. I do programming on the client side with Java, JavaScript, html, Ajax and CSS while I use PHP for server side programming.","sameAs":["https:\/\/www.webcodegeeks.com\/"],"url":"https:\/\/www.webcodegeeks.com\/author\/olayemi-odunayo\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/14957","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/users\/164"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=14957"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/14957\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media\/930"}],"wp:attachment":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media?parent=14957"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=14957"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=14957"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}