I don't know if this is directly FT2 related, but when I put the advised php code below at start of the page, all my special swedish chars on the page turn in to "dingbat" type symbols, same as if I set page character set to use UTF-8, but page is set to use ISO 8859-1
If I remove the php code, page display normally showing swedish chars correctly. Any one have any idea why and what to do?
Is it ok to post this in FT1 forum as well, if no one knows, as trafic here still are limited?
Code:
<?php
require_once("/var/www/formtools/global/api/api.php");
$fields = ft_api_init_form_page(1);
$params = array(
"submit_button" => "submit",
"next_page" => "success.php",
"form_data" => $_POST,
"file_data" => $_FILES,
"finalize" => true
);
ft_api_process_form($params);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
...
</meta>
If I remove the php code, page display normally showing swedish chars correctly. Any one have any idea why and what to do?
Is it ok to post this in FT1 forum as well, if no one knows, as trafic here still are limited?