Hi. I need help modifying html code embedded in this php code.
The following code shows html text inbetween header and footer, as you may know. I need to modify the text this code fetches. Is there any simple way to do that? My php skills are very basic.
Thank you.
<?php include("header.php");
$data = $obj->GetData('*','admin_menu','id = 63');
$row_data=mysql_fetch_array($data);
?>
<!--Wrapper-->
<div class="wrapper">
<div class="middle"><!--Start Middle-->
<div class="main">
<!--Start Leftt-->
<div class="contain">
<?php echo $row_data['description']; ?>
</div><!--End Left-->
<!--Start Right-->
<!--End Right-->
<div class="clear"></div>
</div>
</div><!--End Middle-->
</div><!--Wrapper-->
<?php include("footer.php"); ?>


