You can, and all you have to do is like so:
Code:
<?php
$id = $_GET['id'];
include('dbconnect.php'); //all the database info and connection
$info = mysql_query("SELECT * FROM `table` WHERE `id`='$id'");
while ($q = mysql_fetch_array($info)) {
?>
<script language="JavaScript" type="text/javascript">
<!--
//Usage: writeRichText(fieldname, html, width, height, buttons, readOnly)
writeRichText('rte1', '<?php echo htmlentities($q["content"]);?>', 400, 200, true, false);
//-->
</script>
<?php
}
?>
Just an example of course, but you get the idea. Hope this helps.
Bookmarks