I am trying to wrap my html (including the fckedtior) with a table.. See below:
But the editor keeps echoing outside the table...
Why wont it wrap with the data? Thanks for any help....
$data = "<table>";
$data .= "<tr><td>";
$data .= $editor = new FCKedtior("new");
$data .= $editor->BasePath = "my path to editor";
$data .= ....more fckedtior init code
$data .= $editor->Create();
$data .= "</td></tr>";
$data .= "</table>";
echo $data;
But the editor keeps echoing outside the table...
Why wont it wrap with the data? Thanks for any help....
$data = "<table>";
$data .= "<tr><td>";
$data .= $editor = new FCKedtior("new");
$data .= $editor->BasePath = "my path to editor";
$data .= ....more fckedtior init code
$data .= $editor->Create();
$data .= "</td></tr>";
$data .= "</table>";
echo $data;

RE: Echo or Return ? Please help...
print "<table>";
print "<tr><td>";
$editor = new FCKedtior("new");
$editor->BasePath = "my path to editor";
....more fckedtior init code
$$editor->Create();
print "</td></tr>";
print "</table>";
It works for me.
Kind regards Fred
RE: Echo or Return ? Please help...
RE: Echo or Return ? Please help...
RE: Echo or Return ? Please help...