{"id":15312,"date":"2016-11-28T16:15:55","date_gmt":"2016-11-28T14:15:55","guid":{"rendered":"http:\/\/www.webcodegeeks.com\/?p=15312"},"modified":"2018-01-09T10:04:57","modified_gmt":"2018-01-09T08:04:57","slug":"php-qr-code-generator-example","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/","title":{"rendered":"PHP Qr Code Generator Example"},"content":{"rendered":"<p>QR codes is an abbreviation for quick response code. It was first designed for the automotive industry in Japan. A QR code consists of black squares arranged in a square grid on a white background. QR codes is used to store information or data. Data stored with QR codes can be read with a smart mobile device. In this example we will describe how to generate QR codes with PHP for your website.<br \/>\nFor this example we will use:<\/p>\n<ul>\n<li>A computer with PHP &gt;= 5.5 installed<\/li>\n<li>notepad++<\/li>\n<li>PHP QRcode library<\/li>\n<\/ul>\n<p>&nbsp;<br \/>\n&nbsp;<br \/>\n[ulp id=&#8217;8njY7i2QRy6sg8pg&#8217;]<\/p>\n<h2>1. Getting Started<\/h2>\n<p>To generate QR codes with PHP we will use an open source library called PHP QR code. We use this library to generate QR codes. You can get it from <a href=\"https:\/\/github.com\/t0k4rt\/phpqrcode\">here<\/a>.<br \/>\nAccording to library website PHP QR Code is an open source (LGPL) library for generating QR Code, 2-dimensional barcode. Based on libqrencode C library, provides API for creating QR Code barcode images (PNG, JPEG thanks to GD2). Implemented purely in PHP.<br \/>\nSome of the features of this library are:<\/p>\n<ul>\n<li>Supports QR Code versions (size) 1-40<\/li>\n<li>Numeric, Alphanumeric, 8-bit and Kanji encoding.<\/li>\n<li>Implemented purely in PHP, no external dependencies except GD2<\/li>\n<li>Exports to PNG, JPEG images, also exports as bit-table<\/li>\n<li>TCPDF 2-D barcode API integration<\/li>\n<li>Easy to configure<\/li>\n<li>Data cache for calculation speed-up<\/li>\n<li>Provided merge tool helps deploy library as a one big dependency-less file, simple to &#8220;include and do not wory&#8221;<\/li>\n<li>Debug data dump, error logging, time benchmarking<\/li>\n<li>API documentation<\/li>\n<li>Detailed examples<\/li>\n<li>100% Open Source, LGPL Licensed<\/li>\n<\/ul>\n<p>PHP QR code library makes it very easy to generate QR codes in PHP. After downloading the library from the link given above you should extract it (since it&#8217;s in a zip ) to a suitable place in your hard drive ( most likely where your PHP scripts are stored). Your file path would look something like what is below.<\/p>\n<pre class=\"brush:bash\">\\var\\www\\phpqrcode\r\n\\var\\www\\your_app\r\n<\/pre>\n<p>PHP QR code library doesn&#8217;t need any external dependency except GD2. If you encounter\u00a0any problems while using this library or you just want to check before hand, you should create a script with the <code>phpinfo()<\/code> keyword, to get all the details about your PHP installation.<\/p>\n<pre class=\"brush:bash\">&lt;?php\r\nphpinfo();\r\n\r\n&gt;\r\n\r\n\r\n<\/pre>\n<p><span style=\"text-decoration: underline;\"><em>index.php<\/em><\/span><\/p>\n<pre class=\"brush:php\">\r\n\r\n&lt;?php\r\ninclude \"phpqrcode\/qrlib.php\";\r\n\/\/ create a QR Code with this text and display it\r\nQRcode::png(\"MY FIRST PHP QR CODE GENERATOR EXAMPLE\") ;\r\n?&gt;\r\n<\/pre>\n<p>The first script above, is very simple. It generates a QR code and displays it in the browser. We only supply a string as an argument to the method <code>QRcode::png<\/code> . The string supplied is the information our qr code would hold or store. It&#8217;s so easy.\u00a0Withonly \u00a0just two lines of code we have \u00a0already created a working example.<br \/>\nLets look at another example:<\/p>\n<p><span style=\"text-decoration: underline;\"><em>index2.php<\/em><\/span><\/p>\n<pre class=\"brush:php\">&lt;?php\r\ninclude \"phpqrcode\/qrlib.php\";\r\nQRcode::png (\"http:www.webcodegeeks.com \" , \"test.png \", \"L\", 5, 5) ;\r\n\r\n?&gt;\r\n\r\n\r\n<\/pre>\n<p>The second example might seem rather complex- but it is not really. The first parameter supplied to the method ( http:www.webcodegeeks.com ) represents the information to be encoded, the second parameter, has a default value of false meaning the image is displayed by the browser. Here we set the value to a valid file name ( test.png), this tells the QR code library to create a file containing the QR code.<\/p>\n<p>The third parameter is the level of error correction for the generated barcode, passed as a single letter string. This specifies how much of the data\u2019s codewords (8-bits per codeword) can be restored for a distorted or damaged QR Code image using the Reed-Solomon error correction algorithm. The higher the correction level, the less the data capacity of the barcode can be for a given dimension.<\/p>\n<p>The fourth parameter supplied, defines the size of each of the barcode squares and it is in pixels. In our example we specified five parameters\u00a0so we have a 5 by 5 barcode square.<br \/>\nThe fifth parameter defines the white margin boundary around the barcode. To preview\u00a0the QR code we just created is simple. Lets do that in our next example.<\/p>\n<p><span style=\"text-decoration: underline;\"><em>index2.php<\/em><\/span><\/p>\n<pre class=\"brush:php\">&gt;!DOCTYPE html&lt; \r\n&gt;html lang=en&lt;\r\n\t&gt;head&lt;\r\n\t&gt;style&lt;\r\n\t&gt;\/style&lt;\r\n\r\n\t\t&gt;meta charset=\"utf-8\" \/&lt;\r\n\t\t&gt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, target-densitydpi=device-dpi\"\/&lt;\r\n\r\n\t\t&gt;title&lt;\r\nPreviewing The QR Code Image\r\n\r\n&gt;\/title&lt;\r\n\t\t\r\n\t\t&gt;\/head&lt;\r\n\t&gt;body&lt;\r\n\t&gt;img src=\"test.png\"&lt;\r\n\t&gt;\/body&lt;\r\n\t&gt;\/html&lt;\r\n<\/pre>\n<p>QR code is commonly used in advertising, packaging, commercial tracking, entertaining, transport ticketing, product marketing and in-store product labeling. Besides, it can also be applied to store personal information by government. Moreover, it may appear in magazines, on signs, buses, business cards, or almost any object that\u00a0users might need information.<\/p>\n<h2>2. Summary<\/h2>\n<p>In this example we learnt about QR codes, what they are and their uses. We learnt how to create QR codes in PHP, through the use of QR code library.<\/p>\n<h2>3. Download the source code<\/h2>\n<div class=\"download\"><strong>Download<\/strong><br \/>\nYou can download the full source code of this example here: <strong><strong><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/11\/phpqrcodegenerator.zip\">phpqrcodegenerator<\/a><\/strong><\/strong>&nbsp;<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>QR codes is an abbreviation for quick response code. It was first designed for the automotive industry in Japan. A QR code consists of black squares arranged in a square grid on a white background. QR codes is used to store information or data. Data stored with QR codes can be read with a smart &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":[407],"class_list":["post-15312","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php","tag-qr-code-generator"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PHP Qr Code Generator Example - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"QR codes is an abbreviation for quick response code. It was first designed for the automotive industry in Japan. A QR code consists of black squares\" \/>\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-qr-code-generator-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP Qr Code Generator Example - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"QR codes is an abbreviation for quick response code. It was first designed for the automotive industry in Japan. A QR code consists of black squares\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/\" \/>\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-11-28T14:15:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-09T08:04:57+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-qr-code-generator-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/\"},\"author\":{\"name\":\"Olayemi Odunayo\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/417918d9b5811210265e8590509718b8\"},\"headline\":\"PHP Qr Code Generator Example\",\"datePublished\":\"2016-11-28T14:15:55+00:00\",\"dateModified\":\"2018-01-09T08:04:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/\"},\"wordCount\":736,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg\",\"keywords\":[\"QR CODE GENERATOR\"],\"articleSection\":[\"PHP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/\",\"name\":\"PHP Qr Code Generator Example - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg\",\"datePublished\":\"2016-11-28T14:15:55+00:00\",\"dateModified\":\"2018-01-09T08:04:57+00:00\",\"description\":\"QR codes is an abbreviation for quick response code. It was first designed for the automotive industry in Japan. A QR code consists of black squares\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/#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-qr-code-generator-example\/#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 Qr Code Generator Example\"}]},{\"@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 Qr Code Generator Example - Web Code Geeks - 2026","description":"QR codes is an abbreviation for quick response code. It was first designed for the automotive industry in Japan. A QR code consists of black squares","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-qr-code-generator-example\/","og_locale":"en_US","og_type":"article","og_title":"PHP Qr Code Generator Example - Web Code Geeks - 2026","og_description":"QR codes is an abbreviation for quick response code. It was first designed for the automotive industry in Japan. A QR code consists of black squares","og_url":"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_published_time":"2016-11-28T14:15:55+00:00","article_modified_time":"2018-01-09T08:04:57+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-qr-code-generator-example\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/"},"author":{"name":"Olayemi Odunayo","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/417918d9b5811210265e8590509718b8"},"headline":"PHP Qr Code Generator Example","datePublished":"2016-11-28T14:15:55+00:00","dateModified":"2018-01-09T08:04:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/"},"wordCount":736,"commentCount":0,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg","keywords":["QR CODE GENERATOR"],"articleSection":["PHP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/","url":"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/","name":"PHP Qr Code Generator Example - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/php-logo.jpg","datePublished":"2016-11-28T14:15:55+00:00","dateModified":"2018-01-09T08:04:57+00:00","description":"QR codes is an abbreviation for quick response code. It was first designed for the automotive industry in Japan. A QR code consists of black squares","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/php\/php-qr-code-generator-example\/#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-qr-code-generator-example\/#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 Qr Code Generator Example"}]},{"@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\/15312","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=15312"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/15312\/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=15312"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=15312"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=15312"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}