When i use the code below, and i want to select it from my Database(So the content of the database becomes the of my input).
I filled in the value with my $array['name']...
So in firefox this works perfectly, but in Internet Explorer, it doesnt fill it in... Any ideas?
I filled in the value with my $array['name']...
So in firefox this works perfectly, but in Internet Explorer, it doesnt fill it in... Any ideas?
<input type="hidden" value="" name="inhoud">
<?
$sBasePath = $_SERVER['PHP_SELF'];
$sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "_samples" ) );
$oFCKeditor = new FCKeditor('inhoud');
$oFCKeditor->BasePath = $sBasePath;
$oFCKeditor->Config['DefaultLanguage'] = 'nl';
$oFCKeditor->Value = '';
$oFCKeditor->Create();
?>

Re: [IE]Input type value?!