こんにちはみんな私は私の新しいソーシャルネットワークのためのブログシステムを構築していて、TinyMCEを使って投稿を書いています!どういうわけか表示されないのに理由がわからない!
私は彼らのウェブサイトからパッケージをダウンロードしてサーバーにアップロードし、次のようなblog_writer.phpというページを作成しました。
これは私のテキスト領域を含むフォームです:
<form method="post" action="blog_writer.php">
<div id="blogMsg"><?php echo $msg; ?></div>
<div id="blogTitle">
Choose a topic:
<select name="topic">
<option value=" "> </option>
<?php
$sql = "SELECT id,name FROM blog_topics ORDER BY name";
$query = mysqli_query($db_conx, $sql) or die (mysqli_error());
while($row = mysqli_fetch_array($query)){
echo '<option value="' . $option[id] . '">' . $option[name] . '</option>';
}?>
</select>
Enter a title:
<input name="title" type="text" size="80" value="<?php echo $title; ?>" />
</div>
<div id="blogContent"><textarea name="blog" id="blog" cols="80" rows="25" class="tinymce"><?php echo $blog; ?></textarea>
<br/><br/>
<input type="submit" name="submit" id="submit" value="Publish Blog Post">
<br/><br/>
</div>
<div class="blogClear"></div>
</form>
そして、これが私がテキストエディタを持ち込んでテキストエリアを置き換えるためにページで使用しているjavascriptです:
<script src="js/javascript-1.9.1.js" type="text/javascript"></script>
<script src="tiny_mce/jquery.tinymce.js"></script>
<script>
$().ready(function() {
$('textarea.tinymce').tinymce({
script_url : 'tiny_mce/tiny_mce.js',
theme : "advanced",
plugins : "autolink,lists,inlinepopups,paste,noneeditable,nonebreaking",
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
});
});
</script>
私のページをダウンロードで提供されているサンプルページと比較してわかる限り、uoを示すものがあるはずです!しかし、私が得ているのは今のところ空白のページだけです!
よろしくお願いします!
フィリップデューズ