Maison > php教程 > php手册 > le corps du texte

fck图片不能显示问题

WBOY
Libérer: 2016-05-25 16:53:29
original
1020 Les gens l'ont consulté

我们来看看一个关于如何让fck能正常显示我们上传的图片吧。

<div id="wrapper"> 
<form name="form1" action="<?php echo $_SERVER["PHP_SELF"] ?>" method="post"> 
标题:<input type="text" size="20" name="title" /><br /> 
<?php
include "fckeditor/fckeditor.php"; //包含文件
$ofckeditor = new FCKeditor("fckeditor1"); //创建实例
$ofckeditor->BasePath = "./fckeditor/"; //设置FCK的路径
$ofckeditor->ToolbarSet = "Default"; //设置编辑器工具栏类型
$ofckeditor->Width = "700px";
$ofckeditor->Height = "300px"; //设置编辑器高度
$ofckeditor->Create(); //创建编辑器
?>
<br /> 
<input type="submit" name="submit" value="提交" /> 
</form> 
<br /> 
</div> 
<div> 
<?php
echo $_POST["fckeditor1"];
?>
</div>
Copier après la connexion

路径不对,注意你的源代码:

<img  src="/fck/upload/image/20090406214620132.jpg" / alt="fck图片不能显示问题 " >
Copier après la connexion

再看你的调用fck地址为:fckeditor/fckeditor.php

说明你的预览页面和fck不在同级。再说,FCK默认上传图片源代码里都应该是完整URL。

你的FCK似乎改动过吧,配置一下你的fck就OK了。


本文链接:

收藏随意^^请保留教程地址.

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal