{"id":4318,"date":"2017-11-14T14:21:10","date_gmt":"2017-11-14T13:21:10","guid":{"rendered":"https:\/\/www.flagsoft.com\/cmswp\/?page_id=4318"},"modified":"2019-07-31T20:42:43","modified_gmt":"2019-07-31T18:42:43","slug":"phpfusion-official-homepage","status":"publish","type":"page","link":"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/","title":{"rendered":"phpfusion"},"content":{"rendered":"<h1 style=\"text-align: center;\">phpfusion<\/h1>\n<h2 style=\"text-align: center;\">Your ColdFusion like clone for PHP<\/h2>\n<p style=\"text-align: center;\">phpfusion official homepage CFML (ColdFusion Markup Language)<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-4345 size-thumbnail\" src=\"https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024-150x150.jpeg\" alt=\"[cml_media_alt id='4345']phpfusion-logo-1024[\/cml_media_alt]\" width=\"150\" height=\"150\" srcset=\"https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024-150x150.jpeg 150w, https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024-300x300.jpeg 300w, https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024-100x100.jpeg 100w, https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024-600x600.jpeg 600w, https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024-768x768.jpeg 768w, https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024-230x230.jpeg 230w, https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024-330x330.jpeg 330w, https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024.jpeg 1024w\" sizes=\"auto, (max-width: 150px) 100vw, 150px\" \/><\/p>\n<p style=\"text-align: center;\">\n<h2>Online Demo<\/h2>\n<p><a href=\"http:\/\/www.flagsoft.com\/phpfusion\/index.php\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/www.flagsoft.com\/phpfusion\/index.php<\/a><\/p>\n<h2>Installation and Setup<\/h2>\n<h3>\u00a0Overview<\/h3>\n<ol>\n<li><strong>Download<\/strong> phpfusion from GitHub\u00a0<a href=\"https:\/\/github.com\/flagsoft\/phpfusion\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/github.com\/flagsoft\/phpfusion<\/a> (Use green button \"clone or download\" and choose \"Download ZIP\" or \"Open in Desktop\" or just clone it or whatever<\/li>\n<li><strong>Unzip<\/strong> to a new empty folder if you downloaded the ZIP package<\/li>\n<li>Setup and install <strong>Database<\/strong> and tables, see file\u00a0example_catalogue_phpfusion.sql (MySQL) for more details. Basic DB setup<\/li>\n<li>Just adjust <strong>database username<\/strong> and <strong>database password<\/strong> in your phpfusion files (see .php files)<\/li>\n<li><strong>Done!<\/strong><\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<h3>Database (Example)<\/h3>\n<p>There is nothing special here. There a are no extra fancy files required.\u00a0Just normal tables.<\/p>\n<p>&nbsp;<\/p>\n<pre>-- phpMyAdmin SQL Dump\r\n-- version 3.2.4\r\n-- http:\/\/www.phpmyadmin.net\r\n--\r\n-- Host: localhost\r\n-- Generation Time: Jan 23, 2012 at 04:21 PM\r\n-- Server version: 5.1.44\r\n-- PHP Version: 5.3.1\r\nSET SQL_MODE=\"NO_AUTO_VALUE_ON_ZERO\";\r\n\/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT *\/;\r\n\/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS *\/;\r\n\/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION *\/;\r\n\/*!40101 SET NAMES utf8 *\/;\r\n--\r\n-- Database: `phpfusion`\r\n--\r\n-- --------------------------------------------------------\r\n--\r\n-- Table structure for table `catalogue`\r\n--\r\nCREATE TABLE IF NOT EXISTS `catalogue` (\r\n `id` bigint(20) NOT NULL AUTO_INCREMENT,\r\n `size` int(11) DEFAULT NULL,\r\n `carbrand` varchar(40) CHARACTER SET latin1 COLLATE latin1_general_cs DEFAULT NULL,\r\n `carname` varchar(40) CHARACTER SET latin1 COLLATE latin1_general_cs DEFAULT NULL,\r\n `consumption` float NOT NULL,\r\n `ps` int(11) NOT NULL,\r\n `greenlabel` varchar(6) CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL,\r\n PRIMARY KEY (`id`)\r\n) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;\r\n--\r\n-- Dumping data for table `catalogue`\r\n--\r\nINSERT INTO `catalogue` (`id`, `size`, `carbrand`, `carname`, `consumption`, `ps`, `greenlabel`) VALUES\r\n(1, 4, 'Volvo', 'Abc', 5.1, 200, 'A'),\r\n(2, 2, 'BMW', 'i5', 10, 250, 'B'),\r\n(3, 6, 'Volkswagen', 'VW Bus', 8.1, 120, 'B'),\r\n(4, 4, 'Bulgati', 'BT2', 10.2, 1000, 'C');\r\n-- --------------------------------------------------------\r\n--\r\n-- Table structure for table `description`\r\n--\r\nCREATE TABLE IF NOT EXISTS `description` (\r\n `id` bigint(20) NOT NULL AUTO_INCREMENT,\r\n `lang` text NOT NULL,\r\n `desc` text CHARACTER SET latin1 COLLATE latin1_general_cs,\r\n PRIMARY KEY (`id`)\r\n) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;\r\n--\r\n-- Dumping data for table `description`\r\n--\r\nINSERT INTO `description` (`id`, `lang`, `desc`) VALUES\r\n(1, 'EN', 'This is your Catalogue description. Here you can search for cars.'),\r\n(2, 'DE', 'Dies ist Ihre Katalog Beschreibung in Deutsch.');<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<h2>Connect to the Database (MySQL)<\/h2>\n<h3>include_once(\"pf_core.php\")<\/h3>\n<p>Include the phpfusion core.<\/p>\n<h3>PF_DB_connect()<\/h3>\n<p>Connect to database.<\/p>\n<h3>PF_DB_select()<\/h3>\n<p>Selects a database.<\/p>\n<h3>PF_DB_table()<\/h3>\n<p>Selects a table.<\/p>\n<p>&nbsp;<\/p>\n<p>Example code:<\/p>\n<pre>&lt;?\r\n<strong>include_once<\/strong>(\"pf_core.php\");\r\n<strong>PF_DB_connect<\/strong>(\"localhost\", \"&lt;your-database-name&gt;\", \"&lt;your-database-password&gt;\");\r\n<strong>PF_DB_select<\/strong>(\"&lt;your-database-name&gt;\");\r\n<strong>PF_DB_table<\/strong>(\"catalogue\");<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<h2>Controller<\/h2>\n<h3>File index.php<\/h3>\n<p>It's a kind of a controller \ud83d\ude09<\/p>\n<p>&nbsp;<\/p>\n<p>include(\"user_config.php\");<\/p>\n<p>[...]<\/p>\n<p>&lt;script src=\"pf_util.js\" type=\"text\/javascript\"&gt;&lt;\/script&gt;<br \/>\n&lt;link href=\"pf_style.css\" rel=\"stylesheet\" type=\"text\/css\" \/&gt;<\/p>\n<p>&nbsp;<\/p>\n<p>[...]<\/p>\n<p>include($g_USER_headerfile);<\/p>\n<p>[...]<\/p>\n<p>include($g_USER_menufile);<\/p>\n<p>if ( isset($_GET['contact']) ) {<br \/>\ninclude($g_USER_contactfile);<\/p>\n<p>} else if ( isset($_GET['search']) ) {<br \/>\ninclude(\"cat_searchresult.php\");<\/p>\n<p>} else {<br \/>\ninclude(\"index_txt.html\");<br \/>\n}<\/p>\n<p>[...]<\/p>\n<p>include($g_USER_footerfile);<\/p>\n<p>&nbsp;<\/p>\n<h2>Misc<\/h2>\n<h3>PF_setLANG()<\/h3>\n<p>Set language id.<\/p>\n<h3>PF_query()<\/h3>\n<p>Query database<\/p>\n<h3>#identifier#<\/h3>\n<p>Insert values from database<\/p>\n<p>&nbsp;<\/p>\n<p>Example Code:<\/p>\n<pre>&lt;? <strong>PF_DB_table<\/strong>(\"description\"); ?&gt;\r\n&lt;? <strong>PF_setLANG<\/strong>(\"EN\"); ?&gt;\r\n&lt;? echo \"Current Language: \" . ${g_USER_LANG}; ?&gt;\r\n&lt;? <strong>PF_query<\/strong>(\"SELECT * FROM description WHERE lang='${g_USER_LANG}'\", NULL); ?&gt;\r\n&lt;!-- show the description out of database --&gt;\r\n&lt;div style=\"background-color:#eeeeee\"&gt;<strong>#desc#<\/strong>&lt;\/div&gt;<\/pre>\n<p>&nbsp;<\/p>\n<p>Output:<\/p>\n<p>Current Language: EN<\/p>\n<p>This is your Catalogue description. Here you can search for cars.<\/p>\n<div><\/div>\n<p>NOTE: See also \"description\" table within database.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<h2>Show table results with options<\/h2>\n<h3>PF_HTML_checkbox_to_SQL()<\/h3>\n<p>Create SQL for checkbox<\/p>\n<h3>PF_HTML_radio_option_to_SQL()<\/h3>\n<p>Create SQL for radio option<\/p>\n<h3>PF_CSV_to_HTML_table()<\/h3>\n<p>Print html table.<\/p>\n<p>NOTE: You can connect to an other phpfusion file, here \"Details\", to show detail record. This is down with\u00a0cat_detail.php?id=<\/p>\n<p>&nbsp;<\/p>\n<p>Example Code:<\/p>\n<p>&lt;? PF_DB_table(\"catalogue\"); ?&gt;<\/p>\n<p>&lt;?<\/p>\n<p>$g_SQL_fields = \"\"<br \/>\n. PF_HTML_checkbox_to_SQL(\"greenlabel\")<br \/>\n. PF_HTML_radio_option_to_SQL(\"ps\")<br \/>\n. PF_HTML_radio_option_to_SQL(\"size\")<br \/>\n. PF_HTML_radio_option_to_SQL(\"consumption\")<br \/>\n;<\/p>\n<p>$g_sql = \"SELECT * FROM \"<br \/>\n. \" $g_DB_table \"<br \/>\n. \" WHERE (1) \"<br \/>\n. $g_SQL_fields<br \/>\n;<\/p>\n<p>\/\/PF_debug(true);<br \/>\n\/\/PF_debug(false);<\/p>\n<p>$result = mysql_query($g_sql);<\/p>\n<p>PF_CSV_to_HTML_table($g_sql, \"Detail\", \"cat_detail.php?id=\");<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4340\" src=\"https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-Screen-Shot-2017-11-14-at-15.11.55.png\" alt=\"[cml_media_alt id='4340']phpfusion-Screen Shot 2017-11-14 at 15.11.55[\/cml_media_alt]\" width=\"455\" height=\"131\" srcset=\"https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-Screen-Shot-2017-11-14-at-15.11.55.png 455w, https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-Screen-Shot-2017-11-14-at-15.11.55-300x86.png 300w\" sizes=\"auto, (max-width: 455px) 100vw, 455px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-4341\" src=\"https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-Screen-Shot-2017-11-14-at-15.12.05.png\" alt=\"[cml_media_alt id='4341']phpfusion-Screen Shot 2017-11-14 at 15.12.05[\/cml_media_alt]\" width=\"189\" height=\"186\" \/><\/p>\n<h4>cat_detail.php<\/h4>\n<pre>&lt;?\r\n\r\ninclude_once(\"pf_core.php\");\r\n\r\nPF_DB_connect(\"localhost\", \"&lt;your-db-name&gt;\", \"&lt;your-db-password&gt;\");\r\nPF_DB_select(\"&lt;your-db-name&gt;\");\r\nPF_DB_table(\"catalogue\");\r\n\r\n$ID=$_GET['id'];\r\n\r\n?&gt;\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n&lt;link rel=\"stylesheet\" type=\"text\/css\" href=\"pf_style.css\" \/&gt;\r\n&lt;!-- &lt;link rel=\"stylesheet\" type=\"text\/css\" href=\"car_detail.css\" \/&gt; --&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n\r\n&lt;a href=\"index.html\"&gt;Search&lt;\/a&gt;\r\n&lt;h2&gt;Catalogue Detail&lt;\/h2&gt;\r\n\r\n&lt;? PF_query(\"SELECT * FROM catalogue WHERE id=$ID\", NULL); ?&gt;\r\n\r\n&lt;table class=\"detail\"&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt;Id:&lt;\/td&gt;\r\n&lt;td&gt;#id#&lt;\/td&gt;\r\n&lt;\/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt;Number of Seats:&lt;\/td&gt;\r\n&lt;td&gt;#size#&lt;\/td&gt;\r\n&lt;\/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt;Car Brand:&lt;\/td&gt;\r\n&lt;td&gt;#carbrand#&lt;\/td&gt;\r\n&lt;\/tr&gt;\r\n\r\n&lt;tr&gt;\r\n&lt;td&gt;Consumption:&lt;\/td&gt;\r\n&lt;td&gt;#consumption#&lt;\/td&gt;\r\n&lt;\/tr&gt;\r\n\r\n&lt;tr&gt;\r\n&lt;td&gt;Green Label:&lt;\/td&gt;\r\n&lt;td&gt;#greenlabel#&lt;\/td&gt;\r\n&lt;\/tr&gt;\r\n\r\n&lt;\/table&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n&lt;? PF_DB_close(); ?&gt;\r\n&lt;? ob_end_flush(); ?&gt;\r\n<\/pre>\n<p>&nbsp;<\/p>\n<h2>PF_use_template()<\/h2>\n<p>You can use template files which get interpreted for CFML ColdFusion Markup Language.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<h2>CFML (ColdFusion Markup Language)<\/h2>\n<h3>cfoutput<\/h3>\n<p>Input:<\/p>\n<pre>&lt;cfoutput&gt;Welcome to PhpFusion, seriously.&lt;\/cfoutput&gt;<\/pre>\n<p>Output:<\/p>\n<div>Welcome to PhpFusion, seriously.<\/div>\n<div><\/div>\n<div>Input:<\/div>\n<div>\n<pre>&lt;cfset variable_hello = \"PHP\"&gt;\r\n&lt;cfoutput&gt;Hi #variable_hello#!&lt;\/cfoutput&gt;\r\n<\/pre>\n<p>Output:<\/p>\n<div>Hi PHP<\/div>\n<\/div>\n<h3>cfset<\/h3>\n<p>Input:<\/p>\n<pre>&lt;cfset variable_hello = \"Hallo Welt!\"&gt;\r\n&lt;cfoutput&gt;Hi! #variable_hello#&lt;\/cfoutput&gt;\r\n<\/pre>\n<p>Output:<\/p>\n<div>Hi! Hallo Welt!<\/div>\n<h3>cfloop (DRAFT)<\/h3>\n<p>&lt;table border=\"4\"&gt;<\/p>\n<p>&lt;cfloop query=\"getMyFriends\"&gt;<br \/>\n&lt;tr&gt;<br \/>\n&lt;td&gt;#id#&lt;\/td&gt;<br \/>\n&lt;td&gt;#carbrand#&lt;\/td&gt;<br \/>\n&lt;\/tr&gt;<br \/>\n&lt;\/cfloop&gt;<\/p>\n<p>&lt;\/table&gt;<\/p>\n<h3>cfif, cfelseif, cfelse (not working right now?)<\/h3>\n<p>&lt;cfif expression&gt;<br \/>\nif....<br \/>\n&lt;cfelseif expression&gt;<br \/>\nelse if....<br \/>\n&lt;cfelse&gt;<br \/>\nelse...<br \/>\n&lt;\/cfif&gt;<\/p>\n<p>&nbsp;<\/p>\n<h2>Create CSV tables<\/h2>\n<h3>PF_CSV_to_HTML_table()<\/h3>\n<p>Example code:<\/p>\n<pre>$result = mysql_query($g_sql);\r\n\r\n<strong>PF_CSV_to_HTML_table<\/strong>($g_sql, \"Detail\", \"cat_detail.php?id=\");\r\n\r\necho \"&lt;pre&gt;\";\r\nwhile($row = mysql_fetch_array($result)) {\r\n echo '&lt;a href=' . \"cat_detail.php?id=\" . $row['id'] . \"&gt;Detail&lt;\/a&gt;\";\r\n echo\r\n $row['id'] . \"; \" .\r\n $row['carbrand'] . \"; \" .\r\n $row['carname'] . \"; \" .\r\n $row['size'] . \"; \" .\r\n $row['consumption'] . \"; \" .\r\n $row['ps'] . \"; \" .\r\n $row['greenlabel'];\r\n echo \"&lt;br\/&gt;\";\r\n}\r\necho \"&lt;\/pre&gt;\";\r\n<\/pre>\n<p>Output:<\/p>\n<pre>\"1\", \"Volvo\", \"Abc\", \"4\", \"5.1\", \"200\", \"A\"\r\n\"2\", \"BMW\", \"i5\", \"2\", \"10\", \"250\", \"B\"\r\n\"3\", \"Volkswagen\", \"VW Bus\", \"6\", \"8.1\", \"120\", \"B\"\r\n\"4\", \"Bulgati\", \"BT2\", \"4\", \"10.2\", \"1000\", \"C\"<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>phpfusion Your ColdFusion like clone for PHP phpfusion official homepage CFML (ColdFusion Markup Language) Online Demo http:\/\/www.flagsoft.com\/phpfusion\/index.php Installation and Setup \u00a0Overview Download phpfusion from GitHub\u00a0https:\/\/github.com\/flagsoft\/phpfusion (Use green button &#171;clone or download&#187; and choose &#171;Download ZIP&#187; or &#171;Open in Desktop&#187; or just clone it or whatever Unzip to a new empty folder if you downloaded the &hellip;<\/p>\n<p class=\"read-more\"> <a class=\"\" href=\"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/\"> <span class=\"screen-reader-text\">phpfusion<\/span> Weiterlesen &raquo;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1019,"menu_order":6,"comment_status":"open","ping_status":"open","template":"","meta":{"_uag_custom_page_level_css":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"","footnotes":"","_links_to":"","_links_to_target":""},"class_list":["post-4318","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>phpfusion - Flagsoft<\/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.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"phpfusion - Flagsoft\" \/>\n<meta property=\"og:description\" content=\"phpfusion Your ColdFusion like clone for PHP phpfusion official homepage CFML (ColdFusion Markup Language) Online Demo http:\/\/www.flagsoft.com\/phpfusion\/index.php Installation and Setup \u00a0Overview Download phpfusion from GitHub\u00a0https:\/\/github.com\/flagsoft\/phpfusion (Use green button &quot;clone or download&quot; and choose &quot;Download ZIP&quot; or &quot;Open in Desktop&quot; or just clone it or whatever Unzip to a new empty folder if you downloaded the &hellip; phpfusion Weiterlesen &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/\" \/>\n<meta property=\"og:site_name\" content=\"Flagsoft\" \/>\n<meta property=\"article:modified_time\" content=\"2019-07-31T18:42:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024-150x150.jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/\",\"url\":\"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/\",\"name\":\"phpfusion - Flagsoft\",\"isPartOf\":{\"@id\":\"https:\/\/www.flagsoft.com\/cmswp\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024-150x150.jpeg\",\"datePublished\":\"2017-11-14T13:21:10+00:00\",\"dateModified\":\"2019-07-31T18:42:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/#breadcrumb\"},\"inLanguage\":\"de-CH\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de-CH\",\"@id\":\"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/#primaryimage\",\"url\":\"https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024.jpeg\",\"contentUrl\":\"https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024.jpeg\",\"width\":1024,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.flagsoft.com\/cmswp\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Software\",\"item\":\"https:\/\/www.flagsoft.com\/cmswp\/software\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"phpfusion\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.flagsoft.com\/cmswp\/#website\",\"url\":\"https:\/\/www.flagsoft.com\/cmswp\/\",\"name\":\"Flagsoft\",\"description\":\"ALPHA Schulmagazin, Byztxt, Strongsdict, Remote Control Cursor for Mac, PictureViewer4Mac, sdspeed free SD Card Reader for Mac OS X, Byztxt Light, 1A Shopping List, Kindle Book Template\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.flagsoft.com\/cmswp\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de-CH\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"phpfusion - Flagsoft","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.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/","og_locale":"de_DE","og_type":"article","og_title":"phpfusion - Flagsoft","og_description":"phpfusion Your ColdFusion like clone for PHP phpfusion official homepage CFML (ColdFusion Markup Language) Online Demo http:\/\/www.flagsoft.com\/phpfusion\/index.php Installation and Setup \u00a0Overview Download phpfusion from GitHub\u00a0https:\/\/github.com\/flagsoft\/phpfusion (Use green button \"clone or download\" and choose \"Download ZIP\" or \"Open in Desktop\" or just clone it or whatever Unzip to a new empty folder if you downloaded the &hellip; phpfusion Weiterlesen &raquo;","og_url":"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/","og_site_name":"Flagsoft","article_modified_time":"2019-07-31T18:42:43+00:00","og_image":[{"url":"https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024-150x150.jpeg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"6 Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/","url":"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/","name":"phpfusion - Flagsoft","isPartOf":{"@id":"https:\/\/www.flagsoft.com\/cmswp\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/#primaryimage"},"image":{"@id":"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/#primaryimage"},"thumbnailUrl":"https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024-150x150.jpeg","datePublished":"2017-11-14T13:21:10+00:00","dateModified":"2019-07-31T18:42:43+00:00","breadcrumb":{"@id":"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/#breadcrumb"},"inLanguage":"de-CH","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/"]}]},{"@type":"ImageObject","inLanguage":"de-CH","@id":"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/#primaryimage","url":"https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024.jpeg","contentUrl":"https:\/\/www.flagsoft.com\/cmswp\/wp-content\/uploads\/2017\/11\/phpfusion-logo-1024.jpeg","width":1024,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/www.flagsoft.com\/cmswp\/software\/phpfusion-official-homepage\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.flagsoft.com\/cmswp\/"},{"@type":"ListItem","position":2,"name":"Software","item":"https:\/\/www.flagsoft.com\/cmswp\/software\/"},{"@type":"ListItem","position":3,"name":"phpfusion"}]},{"@type":"WebSite","@id":"https:\/\/www.flagsoft.com\/cmswp\/#website","url":"https:\/\/www.flagsoft.com\/cmswp\/","name":"Flagsoft","description":"ALPHA Schulmagazin, Byztxt, Strongsdict, Remote Control Cursor for Mac, PictureViewer4Mac, sdspeed free SD Card Reader for Mac OS X, Byztxt Light, 1A Shopping List, Kindle Book Template","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.flagsoft.com\/cmswp\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de-CH"}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"mailpoet_newsletter_max":false,"woocommerce_thumbnail":false,"woocommerce_single":false,"woocommerce_gallery_thumbnail":false,"yarpp-thumbnail":false,"slide-thumbnail":false},"uagb_author_info":{"display_name":"M","author_link":"https:\/\/www.flagsoft.com\/cmswp\/author\/admin\/"},"uagb_comment_info":3,"uagb_excerpt":"phpfusion Your ColdFusion like clone for PHP phpfusion official homepage CFML (ColdFusion Markup Language) Online Demo http:\/\/www.flagsoft.com\/phpfusion\/index.php Installation and Setup \u00a0Overview Download phpfusion from GitHub\u00a0https:\/\/github.com\/flagsoft\/phpfusion (Use green button \"clone or download\" and choose \"Download ZIP\" or \"Open in Desktop\" or just clone it or whatever Unzip to a new empty folder if you downloaded the&hellip;","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.flagsoft.com\/cmswp\/wp-json\/wp\/v2\/pages\/4318","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.flagsoft.com\/cmswp\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.flagsoft.com\/cmswp\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.flagsoft.com\/cmswp\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.flagsoft.com\/cmswp\/wp-json\/wp\/v2\/comments?post=4318"}],"version-history":[{"count":20,"href":"https:\/\/www.flagsoft.com\/cmswp\/wp-json\/wp\/v2\/pages\/4318\/revisions"}],"predecessor-version":[{"id":5810,"href":"https:\/\/www.flagsoft.com\/cmswp\/wp-json\/wp\/v2\/pages\/4318\/revisions\/5810"}],"up":[{"embeddable":true,"href":"https:\/\/www.flagsoft.com\/cmswp\/wp-json\/wp\/v2\/pages\/1019"}],"wp:attachment":[{"href":"https:\/\/www.flagsoft.com\/cmswp\/wp-json\/wp\/v2\/media?parent=4318"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}