{"id":1077,"date":"2019-09-05T08:42:32","date_gmt":"2019-09-05T06:42:32","guid":{"rendered":"https:\/\/www.fultek.com.tr\/en\/?p=1077"},"modified":"2026-03-09T14:55:47","modified_gmt":"2026-03-09T12:55:47","slug":"fulmatic-7-plc-webserver","status":"publish","type":"post","link":"https:\/\/www.fultek.com.tr\/en\/fulmatic-7-plc-webserver\/","title":{"rendered":"FULMATIC 7 PLC WEBSERVER"},"content":{"rendered":"\n<p>In this section, we will see how to change to status of an output of plc with feature Fulmatic7 PLC Webserver.<\/p>\n\n\n\n<p>In this application explaining of a pump status as started or stopped. Status of pump can see from image area by changing pump color. And also status can see as an text on textbox, which is under the image area.<\/p>\n\n\n\n<p>Required html file and image files must be loaded to the plc server memory area. <a href=\"https:\/\/www.fultek.com.tr\/Download\/WebserverDemo.zip\">Here<\/a> you can get the files that you need to load into the plc server memory. Plc webserver address is entered into a browser and this file is invoked for runing.<\/p>\n\n\n\n<p>Preparation of HTML file;<\/p>\n\n\n\n<p>In starting we have to add  xml_http.js javascript file into our html file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;script language=JavaScript type=\"text\/javascript\" src=\"xml_http.js\"&gt;&lt;\/script&gt;<\/code><\/pre>\n\n\n\n<p> src=\u201dxml_http.js\u201d&nbsp;is a software in the plc webserver. It accesses form objects, reads plc values and writes to objects. <a href=\"https:\/\/www.fultek.com.tr\/Download\/xml_http.zip\">Here<\/a> you can get this file.<\/p>\n\n\n\n<p>windowsOnLoad () function has the functions we want to run at the starting.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function windowsOnLoad(){\n\tgetQueryString();\n\tupdateMultiple(formUpdate);\n\tperiodicUpdate();\n}<\/code><\/pre>\n\n\n\n<p>periodicUpdate () function has functions that need to run periodically. (In the example, it set to 500 ms.)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>var formUpdate = new periodicObj(\"SPGetValue.cgx\", 500);\n\nfunction periodicUpdate() {\n\t\tif(xmlHttp.readyState != 1)updateMultiple(formUpdate);\n\t\tperiodicFormTime = setTimeout(\"periodicUpdate()\", formUpdate.period); \n\t\trefreshForm();<\/code><\/pre>\n\n\n\n<p>getQueryString () function creates a query for reading from plc and writing to the form objects. One time starting is enough for this function when form is loaded. Let us explain a statement within the query. Example: \u201cid = v0 &amp; bq 0.0\u201d id is the identifier of the form object, bq 0.0 represents the boolean address Q0.0.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function getQueryString(){\n\tvar query=\"SPGetValue.cgx?\";\n\tquery = query + \"id=v0&amp;bq 0.0\" + \"&amp;\" + \"id=v255&amp;bq 0.0\"\n\tformUpdate = new periodicObj(query, 100);\n}<\/code><\/pre>\n\n\n\n<p>function refreshForm() function is worked to show pump status on text area when it get every new data.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function refreshForm() {\n    if (document.getElementById(\"v0\").value == \"false\") {\n        document.getElementById(\"v100\").value = \"Pump Stop\";\n    } else {\n    document.getElementById(\"v100\").value = \"Pump Running\";\n    } \n}  <\/code><\/pre>\n\n\n\n<p>setCheckValue(query) function send true or false status to specified address of pls when the START or STOP button is pressed.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function setCheckValue(query){\n\tvar xhr = new XMLHttpRequest();\n \txhr.timeout = 2000;\n \txhr.open('POST', \"\", true);\t\n \txhr.send(query);<\/code><\/pre>\n\n\n\n<p>The following codes as below that you need, for START and STOP buttons definition and to start and stop the pump when clicked.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;input type=\"button\" name=\"v2\" id=\"v2\" value=\"START\" onclick=\"setCheckValue('bq+0.0=true');\"&gt;\n&lt;input type=\"button\" name=\"v2\" id=\"v2\" value=\"STOP\" onclick=\"setCheckValue('bq+0.0=false');\"&gt;<\/code><\/pre>\n\n\n\n<p>Following codes for definition of textbox for showing pump status as text. Textbox status changes by  refreshForm() function.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;input type=\"text\" name=\"v100\" id=\"v100\" value=\"\" readonly=\"\"&gt;<\/code><\/pre>\n\n\n\n<p>You can find below image object definition codes for monitoring pump status in imagebox.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;img src=\"Pump_0.png\" id=\"v255\" name=\"Image\" width=\"128\" height=\"128\"&gt;<\/code><\/pre>\n\n\n\n<p>Below are all HTML commands for the application.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n&lt;\/head&gt;\n&lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"&gt;\n&lt;script language=JavaScript type=\"text\/javascript\" src=\"xml_http.js\"&gt;&lt;\/script&gt;\n&lt;script language=JavaScript type=\"text\/javascript\"&gt;\nwindow.onload = windowsOnLoad;\n\nfunction windowsOnLoad(){\n\tgetQueryString();\n\tupdateMultiple(formUpdate);\n\tperiodicUpdate();\n}\n\nvar formUpdate = new periodicObj(\"SPGetValue.cgx\", 500);\n\nfunction periodicUpdate() {\n\t\tif(xmlHttp.readyState != 1)updateMultiple(formUpdate);\n\t\tperiodicFormTime = setTimeout(\"periodicUpdate()\", formUpdate.period); \n\t\trefreshForm();\n}\n\nfunction getQueryString(){\n\tvar query=\"SPGetValue.cgx?\";\n\tquery = query + \"id=v0&amp;bq 0.0\" + \"&amp;\" + \"id=v255&amp;bq 0.0\"\n\tformUpdate = new periodicObj(query, 100);\n}\n\nfunction refreshForm() {\n    if (document.getElementById(\"v0\").value == \"false\") {\n        document.getElementById(\"v100\").value = \"Pump Stop\";\n    } else {\n    document.getElementById(\"v100\").value = \"Pump Running\";\n    }    \n\tvar dt = new Date();\n\tdocument.getElementById(\"v200\").value = dt.toLocaleString();\n}\n\nfunction setCheckValue(query){\n \tvar xhr = new XMLHttpRequest();\n \txhr.timeout = 2000;\n \txhr.open('POST', \"\", true);\t\n \txhr.send(query);\t\n}\n\n&lt;\/script&gt;\n&lt;style&gt;\n* {\n  box-sizing: border-box;\n}\n\n\/* Create three equal columns that floats next to each other *\/\n.column {\n  float: left;\n  width: 50%;\n  padding: 10px;\n  height: 300px; \/* Should be removed. Only for demonstration *\/\n}\n\n\/* Clear floats after the columns *\/\n.row:after {\n  content: \"\";\n  display: table;\n  clear: both;\n}\n&lt;\/style&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n\n&lt;h1 style=\"font-size:4vw\"&gt;PLC Zero&lt;\/h1&gt;\n&lt;h2 style=\"font-size:2vw\"&gt;Simple HMI | Web Server&lt;\/h2&gt;\n&lt;input type=\"text\" name=\"v200\" id=\"v200\" value=\"\" readonly&gt;\n&lt;span name=\"v0\" id=\"v0\"&gt;&lt;\/span&gt;\n\n&lt;div class=\"row\"&gt;\n  &lt;div class=\"column\" style=\"background-color:#aaa;\"&gt;\n\t&lt;\/br&gt;\n\t&lt;img src=\"Pump_0.png\" id=\"v255\"  name=\"Image\" width=\"128\" height=\"128\"&gt;\n\t&lt;\/br&gt;&lt;\/br&gt;\n\n\t&lt;\/br&gt;\n\t&lt;input type=\"text\" name=\"v100\" id=\"v100\" value=\"\" readonly&gt;\n\t&lt;\/br&gt;&lt;\/br&gt;\n  &lt;\/div&gt;\n\n  &lt;div class=\"column\" style=\"background-color:#bbb;\"&gt;\n\t&lt;\/br&gt;\n&lt;input type=\"button\" name=\"v2\" id=\"v2\" value=\"START\" onclick=\"setCheckValue('bq+0.0=true');\"&gt;\n\t&lt;\/br&gt;&lt;\/br&gt;\n\t&lt;\/br&gt;\n&lt;input type=\"button\" name=\"v2\" id=\"v2\" value=\"STOP\" onclick=\"setCheckValue('bq+0.0=false');\"&gt;\n\t&lt;\/br&gt;&lt;\/br&gt;\n  &lt;\/div&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p>You can download complex example <a href=\"https:\/\/www.fultek.com.tr\/Download\/WebServer.zip\">here<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this section, we will see how to change to status of an output of plc with feature Fulmatic7 PLC Webserver. In this application explaining of a pump status as started or stopped. Status of pump can see from image area by changing pump color. And also status can see as an text on textbox,&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_kadence_starter_templates_imported_post":false,"_swpsp_post_exclude":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[57],"tags":[59,6,27],"class_list":["post-1077","post","type-post","status-publish","format-standard","hentry","category-plc","tag-fulmatic","tag-plc","tag-webserver"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>FULMATIC 7 PLC WEBSERVER - FULTEK | PLC | HMI | SCADA Software<\/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.fultek.com.tr\/en\/fulmatic-7-plc-webserver\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Scada\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/fulmatic-7-plc-webserver\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/fulmatic-7-plc-webserver\\\/\"},\"author\":{\"name\":\"Scada\",\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/#\\\/schema\\\/person\\\/df45498fb898b0dd50c90cab08dfaedf\"},\"headline\":\"FULMATIC 7 PLC WEBSERVER\",\"datePublished\":\"2019-09-05T06:42:32+00:00\",\"dateModified\":\"2026-03-09T12:55:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/fulmatic-7-plc-webserver\\\/\"},\"wordCount\":348,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/#organization\"},\"keywords\":[\"fulmatic\",\"plc\",\"Webserver\"],\"articleSection\":[\"PLC\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/fulmatic-7-plc-webserver\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/fulmatic-7-plc-webserver\\\/\",\"url\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/fulmatic-7-plc-webserver\\\/\",\"name\":\"FULMATIC 7 PLC WEBSERVER - FULTEK | PLC | HMI | SCADA Software\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/#website\"},\"datePublished\":\"2019-09-05T06:42:32+00:00\",\"dateModified\":\"2026-03-09T12:55:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/fulmatic-7-plc-webserver\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/fulmatic-7-plc-webserver\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/fulmatic-7-plc-webserver\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FULMATIC 7 PLC WEBSERVER\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/\",\"name\":\"FULTEK | PLC | HMI | SCADA Software\",\"description\":\"PLC, HMI and SCADA Software \u2013 Industrial Automation Solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/#organization\",\"name\":\"FULTEK | PLC | HMI | SCADA Software\",\"url\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/cropped-Fultek.png\",\"contentUrl\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/cropped-Fultek.png\",\"width\":704,\"height\":151,\"caption\":\"FULTEK | PLC | HMI | SCADA Software\"},\"image\":{\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/#\\\/schema\\\/person\\\/df45498fb898b0dd50c90cab08dfaedf\",\"name\":\"Scada\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/74e267f7888087018e836ff4895a9b821489ce0a36abfbcd066f3b845c9c9522?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/74e267f7888087018e836ff4895a9b821489ce0a36abfbcd066f3b845c9c9522?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/74e267f7888087018e836ff4895a9b821489ce0a36abfbcd066f3b845c9c9522?s=96&d=mm&r=g\",\"caption\":\"Scada\"},\"sameAs\":[\"http:\\\/\\\/www.fultek.com.tr\\\/en\"],\"url\":\"https:\\\/\\\/www.fultek.com.tr\\\/en\\\/author\\\/salih\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"FULMATIC 7 PLC WEBSERVER - FULTEK | PLC | HMI | SCADA Software","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.fultek.com.tr\/en\/fulmatic-7-plc-webserver\/","twitter_misc":{"Written by":"Scada","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.fultek.com.tr\/en\/fulmatic-7-plc-webserver\/#article","isPartOf":{"@id":"https:\/\/www.fultek.com.tr\/en\/fulmatic-7-plc-webserver\/"},"author":{"name":"Scada","@id":"https:\/\/www.fultek.com.tr\/en\/#\/schema\/person\/df45498fb898b0dd50c90cab08dfaedf"},"headline":"FULMATIC 7 PLC WEBSERVER","datePublished":"2019-09-05T06:42:32+00:00","dateModified":"2026-03-09T12:55:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.fultek.com.tr\/en\/fulmatic-7-plc-webserver\/"},"wordCount":348,"commentCount":0,"publisher":{"@id":"https:\/\/www.fultek.com.tr\/en\/#organization"},"keywords":["fulmatic","plc","Webserver"],"articleSection":["PLC"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.fultek.com.tr\/en\/fulmatic-7-plc-webserver\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.fultek.com.tr\/en\/fulmatic-7-plc-webserver\/","url":"https:\/\/www.fultek.com.tr\/en\/fulmatic-7-plc-webserver\/","name":"FULMATIC 7 PLC WEBSERVER - FULTEK | PLC | HMI | SCADA Software","isPartOf":{"@id":"https:\/\/www.fultek.com.tr\/en\/#website"},"datePublished":"2019-09-05T06:42:32+00:00","dateModified":"2026-03-09T12:55:47+00:00","breadcrumb":{"@id":"https:\/\/www.fultek.com.tr\/en\/fulmatic-7-plc-webserver\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.fultek.com.tr\/en\/fulmatic-7-plc-webserver\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.fultek.com.tr\/en\/fulmatic-7-plc-webserver\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.fultek.com.tr\/en\/"},{"@type":"ListItem","position":2,"name":"FULMATIC 7 PLC WEBSERVER"}]},{"@type":"WebSite","@id":"https:\/\/www.fultek.com.tr\/en\/#website","url":"https:\/\/www.fultek.com.tr\/en\/","name":"FULTEK | PLC | HMI | SCADA Software","description":"PLC, HMI and SCADA Software \u2013 Industrial Automation Solutions","publisher":{"@id":"https:\/\/www.fultek.com.tr\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.fultek.com.tr\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.fultek.com.tr\/en\/#organization","name":"FULTEK | PLC | HMI | SCADA Software","url":"https:\/\/www.fultek.com.tr\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fultek.com.tr\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.fultek.com.tr\/en\/wp-content\/uploads\/2026\/03\/cropped-Fultek.png","contentUrl":"https:\/\/www.fultek.com.tr\/en\/wp-content\/uploads\/2026\/03\/cropped-Fultek.png","width":704,"height":151,"caption":"FULTEK | PLC | HMI | SCADA Software"},"image":{"@id":"https:\/\/www.fultek.com.tr\/en\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.fultek.com.tr\/en\/#\/schema\/person\/df45498fb898b0dd50c90cab08dfaedf","name":"Scada","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/74e267f7888087018e836ff4895a9b821489ce0a36abfbcd066f3b845c9c9522?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/74e267f7888087018e836ff4895a9b821489ce0a36abfbcd066f3b845c9c9522?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/74e267f7888087018e836ff4895a9b821489ce0a36abfbcd066f3b845c9c9522?s=96&d=mm&r=g","caption":"Scada"},"sameAs":["http:\/\/www.fultek.com.tr\/en"],"url":"https:\/\/www.fultek.com.tr\/en\/author\/salih\/"}]}},"taxonomy_info":{"category":[{"value":57,"label":"PLC"}],"post_tag":[{"value":59,"label":"fulmatic"},{"value":6,"label":"plc"},{"value":27,"label":"Webserver"}]},"featured_image_src_large":false,"author_info":{"display_name":"Scada","author_link":"https:\/\/www.fultek.com.tr\/en\/author\/salih\/"},"comment_info":0,"category_info":[{"term_id":57,"name":"PLC","slug":"plc","term_group":0,"term_taxonomy_id":57,"taxonomy":"category","description":"PLC and PLC Software Blog","parent":58,"count":3,"filter":"raw","cat_ID":57,"category_count":3,"category_description":"PLC and PLC Software Blog","cat_name":"PLC","category_nicename":"plc","category_parent":58}],"tag_info":[{"term_id":59,"name":"fulmatic","slug":"fulmatic","term_group":0,"term_taxonomy_id":59,"taxonomy":"post_tag","description":"","parent":0,"count":1,"filter":"raw"},{"term_id":6,"name":"plc","slug":"plc","term_group":0,"term_taxonomy_id":6,"taxonomy":"post_tag","description":"","parent":0,"count":3,"filter":"raw"},{"term_id":27,"name":"Webserver","slug":"webserver","term_group":0,"term_taxonomy_id":27,"taxonomy":"post_tag","description":"","parent":0,"count":1,"filter":"raw"}],"_links":{"self":[{"href":"https:\/\/www.fultek.com.tr\/en\/wp-json\/wp\/v2\/posts\/1077","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.fultek.com.tr\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fultek.com.tr\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fultek.com.tr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fultek.com.tr\/en\/wp-json\/wp\/v2\/comments?post=1077"}],"version-history":[{"count":3,"href":"https:\/\/www.fultek.com.tr\/en\/wp-json\/wp\/v2\/posts\/1077\/revisions"}],"predecessor-version":[{"id":2417,"href":"https:\/\/www.fultek.com.tr\/en\/wp-json\/wp\/v2\/posts\/1077\/revisions\/2417"}],"wp:attachment":[{"href":"https:\/\/www.fultek.com.tr\/en\/wp-json\/wp\/v2\/media?parent=1077"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fultek.com.tr\/en\/wp-json\/wp\/v2\/categories?post=1077"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fultek.com.tr\/en\/wp-json\/wp\/v2\/tags?post=1077"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}