Guest jederafa@hotmail.com Postado Março 13, 2007 Denunciar Share Postado Março 13, 2007 galera voce sabe como configurar o tinymce ??? pra uso em php ??? bixu tá complicado salvei zipado, daí descompactei e agora preciso configurar como faço ?? no manual ele manda colocar isso :<?php $allowedTags='<p><strong><em><u><h1><h2><h3><h4><h5><h6><img>'; $allowedTags.='<li><ol><ul><span><div><br><ins><del>'; if($_POST['elm1']!=') { $sHeader = '<h1>Ah, content is king.</h1>'; $sContent = strip_tags(stripslashes($_POST['elm1]),$allowedTags); } else { $sHeader = '<h1>Nothing submitted yet</h1>'; $sContent = '<p>Start typing...</p>'; $sContent.= '<p><img width="107" height="108" border="0" src="/mediawiki/images/badge.png"'; $sContent.= 'alt="TinyMCE button"/>This rover has crossed over</p>'; }?><html><head><title>My test editor - with tinyMCE and PHP</title><script language="javascript" type="text/javascript" src="/tinymce/js/tinymce/jscripts/tiny_mce/tiny_mce.js"></script><script language="javascript" type="text/javascript"> tinyMCE.init({ theme : "advanced", mode: "exact", elements : "elm1", theme_advanced_toolbar_location : "top", theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator," + "justifyleft,justifycenter,justifyright,justifyfull,formatselect," + "bullist,numlist,outdent,indent", theme_advanced_buttons2 : "link,unlink,anchor,image,separator," +"undo,redo,cleanup,code,separator,sub,sup,charmap", theme_advanced_buttons3 : "", height:"350px", width:"600px", file_browser_callback : 'myFileBrowser' }); function myFileBrowser (field_name, url, type, win) { var fileBrowserWindow = new Array(); fileBrowserWindow['title'] = 'File Browser'; fileBrowserWindow['file'] = "my_cms_script.php" + "?type= + type; fileBrowserWindow['width] = '420'; fileBrowserWindow['height'] = '400'; tinyMCE.openWindow(fileBrowserWindow, { window : win, resizable : 'yes', inline : 'yes' }); return false; }</script></head><body> <?php echo $sHeader;?> <h2>Sample using TinyMCE and PHP</h2> <form method="post" action="sample005.php"> <textarea id="elm1" name="elm1" rows="15" cols="80"><?php echo $sContent;?></textarea><br /><input type="submit" name="save" value="Submit" /><input type="reset" name="reset" value="Reset" /></form></body></html>mas esse caminho não dá certo ... meu code é esse <form action="esboco.php" method="POST"> <br> <br> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="97%" id="AutoNumber1"> <tr> <td colspan="2" style="border-style: none; border-width: medium"> <font face="Verdana"><span style="font-size: 8pt"><br> </span></font></td> </tr> <tr> <td colspan="2" style="border-style: none; border-width: medium"><font face="Verdana"><span style="font-size: 8pt"> <br> Título da Mensagem: <font face="Verdana"> <input type="text" name="Titulo" size="40"> </font></span></font></td> </tr> <tr> <td width="44%" style="border-style: none; border-width: medium"><p><font face="Verdana" style="font-size: 8ptMensagem:</font></td><td width="56%> </font></p> <p> Coloque o Esboço </p> <p><font face="Verdana" style="font-size: 8ptMensagem:</font></td><td width="56%> <textarea rows="20" name="mensagem" cols="75"></textarea> </font></p></td> </tr> </table> <p style="margin-left: -4"><font face="Verdana"><span style="font-size: 8pt"> <br> <input name="submit" type="submit" value="Enviar" > <input name="reset" type="reset" value="Limpar"> </span></font></p> </form>cara tá dificilzão mi juda aí Link para o comentário Compartilhar em outros sites More sharing options...
0 Beraldo Postado Março 13, 2007 Denunciar Share Postado Março 13, 2007 O seu código não funciona pois você não inseriu nenhuma configuração do TinyMCE.Leia a documentação dele:http://wiki.moxiecode.com/index.php/TinyMCE:IndexTente configurar. Se tiver dúvidas, poste-as, para tentarmos ajudar.Abraços,Beraldo Link para o comentário Compartilhar em outros sites More sharing options...
0 Guest Jederafa Postado Março 13, 2007 Denunciar Share Postado Março 13, 2007 O seu código não funciona pois você não inseriu nenhuma configuração do TinyMCE.Leia a documentação dele:http://wiki.moxiecode.com/index.php/TinyMCE:IndexTente configurar. Se tiver dúvidas, poste-as, para tentarmos ajudar.Abraços,BeraldoCara já li e reli mas não sei fazer, não sei porque.. já fiz tudo que diz lá mas não consigo ter resultados... o tynice não aparece no meu text area, colei já os scripts mas nada funciona... já tentei copiar o code num tutorial pelo firefox mas tambem não deu ... a pasta dele está direto na raiz igual a pasta imagens ... mas qual o caminho que tenho que usar ??? como faço ??? pode mi dá essa ajuda pra eu inserir no meu code esse espetacular editor de texto ? Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Guest jederafa@hotmail.com
galera voce sabe como configurar o tinymce ??? pra uso em php ??? bixu tá complicado salvei zipado, daí descompactei e agora preciso configurar como faço ??
no manual ele manda colocar isso :
<?php
$allowedTags='<p><strong><em><u><h1><h2><h3><h4><h5><h6><img>';
$allowedTags.='<li><ol><ul><span><div><br><ins><del>';
if($_POST['elm1']!=') {
$sHeader = '<h1>Ah, content is king.</h1>';
$sContent = strip_tags(stripslashes($_POST['elm1]),$allowedTags);
} else {
$sHeader = '<h1>Nothing submitted yet</h1>';
$sContent = '<p>Start typing...</p>';
$sContent.= '<p><img width="107" height="108" border="0" src="/mediawiki/images/badge.png"';
$sContent.= 'alt="TinyMCE button"/>This rover has crossed over</p>';
}
?>
<html>
<head>
<title>My test editor - with tinyMCE and PHP</title>
<script language="javascript" type="text/javascript" src="/tinymce/js/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({
theme : "advanced",
mode: "exact",
elements : "elm1",
theme_advanced_toolbar_location : "top",
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator,"
+ "justifyleft,justifycenter,justifyright,justifyfull,formatselect,"
+ "bullist,numlist,outdent,indent",
theme_advanced_buttons2 : "link,unlink,anchor,image,separator,"
+"undo,redo,cleanup,code,separator,sub,sup,charmap",
theme_advanced_buttons3 : "",
height:"350px",
width:"600px",
file_browser_callback : 'myFileBrowser'
});
function myFileBrowser (field_name, url, type, win) {
var fileBrowserWindow = new Array();
fileBrowserWindow['title'] = 'File Browser';
fileBrowserWindow['file'] = "my_cms_script.php" + "?type= + type;
fileBrowserWindow['width] = '420';
fileBrowserWindow['height'] = '400';
tinyMCE.openWindow(fileBrowserWindow, { window : win, resizable : 'yes', inline : 'yes' });
return false;
}
</script>
</head>
<body>
<?php echo $sHeader;?>
<h2>Sample using TinyMCE and PHP</h2>
<form method="post" action="sample005.php">
<textarea id="elm1" name="elm1" rows="15" cols="80"><?php echo $sContent;?></textarea>
<br />
<input type="submit" name="save" value="Submit" />
<input type="reset" name="reset" value="Reset" />
</form>
</body>
</html>
mas esse caminho não dá certo ... meu code é esse
<form action="esboco.php" method="POST">
<br>
<br>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="97%" id="AutoNumber1">
<tr>
<td colspan="2" style="border-style: none; border-width: medium"> <font face="Verdana"><span style="font-size: 8pt"><br>
</span></font></td>
</tr>
<tr>
<td colspan="2" style="border-style: none; border-width: medium"><font face="Verdana"><span style="font-size: 8pt"> <br>
Título
da Mensagem: <font face="Verdana">
<input type="text" name="Titulo" size="40">
</font></span></font></td>
</tr>
<tr>
<td width="44%" style="border-style: none; border-width: medium"><p><font face="Verdana" style="font-size: 8pt
Mensagem:</font></td>
<td width="56%> </font></p>
<p> Coloque
o Esboço </p>
<p><font face="Verdana" style="font-size: 8pt
Mensagem:</font></td>
<td width="56%>
<textarea rows="20" name="mensagem" cols="75"></textarea>
</font></p></td>
</tr>
</table>
<p style="margin-left: -4"><font face="Verdana"><span style="font-size: 8pt"> <br>
<input name="submit" type="submit" value="Enviar" >
<input name="reset" type="reset" value="Limpar">
</span></font></p>
</form>
cara tá dificilzão mi juda aí
Link para o comentário
Compartilhar em outros sites
2 respostass a esta questão
Posts Recomendados