Nieuw lid |
|
Beste mensen,
Op dit moment ben ik druk bezig met het ontwikkelen van een nieuwe versie van mijn CMS. In het CMS maak ik gebruik van de open-source editor : FCKEditor.
Dit is de code:
<form method='post' action=''>
<table style='width: 100%;'>
<tr align='left'>
<td width='150'>Pagina naam:</td>
<td width='270'><input type='text' name='menu_naam' value='<?php echo $pagina['menu_naam']; ?>' style='width: 250px;'></input></td>
<tr>
<td width='150'>Pagina volgorde:</td>
<td width='270'><input type='text' name='menu_volgorde' value='<?php echo $pagina['menu_volgorde']; ?>' style='width: 250px;'></input></td>
</tr>
<tr>
<td colspan='2'>
<input type="hidden" id="FCKeditor1" name="menu_tekst" value="<?php echo $pagina['menu_tekst]; ?>" style="display:none" /><input type="hidden" id="FCKeditor1___Config" value="" style="display:none" /><iframe id="FCKeditor1___Frame" src="/nieuw/cms-scripts/fckeditor/editor/fckeditor.html?InstanceName=FCKeditor1&Toolbar=Basic" width="100%" height="200" frameborder="0" scrolling="no"></iframe> <br>
</td>
</tr>
<tr>
<td colspan='4'> </td>
</tr>
<tr>
<td colspan='4' align='right'>
<input type='submit' name='annuleren' value='Annuleren'></input>
<input type='submit' name='opslaan' value='Opslaan'></input>
</td>
</tr>
</table>
</form>
<form method='post' action=''> <table style='width: 100%;'> <tr align='left'> <td width='150'>Pagina naam:</td> <td width='270'><input type='text' name='menu_naam' value=' <?php echo $pagina['menu_naam']; ?>' style='width: 250px;'></input></td> <tr> <td width='150'>Pagina volgorde:</td> <td width='270'><input type='text' name='menu_volgorde' value=' <?php echo $pagina['menu_volgorde']; ?>' style='width: 250px;'></input></td> </tr> <tr> <td colspan='2'> <input type="hidden" id="FCKeditor1" name="menu_tekst" value=" <?php echo $pagina['menu_tekst]; ?>" style="display:none" /><input type="hidden" id="FCKeditor1___Config" value="" style="display:none" /><iframe id="FCKeditor1___Frame" src="/nieuw/cms-scripts/fckeditor/editor/fckeditor.html?InstanceName=FCKeditor1&Toolbar=Basic" width="100%" height="200" frameborder="0" scrolling="no"></iframe> <br> </td> </tr> <tr> <td colspan='4'> </td> </tr> <tr> <td colspan='4' align='right'> <input type='submit' name='annuleren' value='Annuleren'></input> <input type='submit' name='opslaan' value='Opslaan'></input> </td> </tr> </table> </form>
Zoals je ziet lees ik in de fck editor het volgende veld uit de database uit: <?php echo $pagina['menu_tekst]; ?> Maar als ik dat doe, wordt het als volgt weergegeven:
http://sanicom.nl/sitemasters.jpg
Wat doe ik verkeerd in m'n code?
Groetjes van Diederik
|