Hi all,

I've taken on a site previously developed for someone else. I've managed to remove most references to the other company but for some reason I cannot find where the 'About Us' text is stored so that I can change it.

This is the page and I want to change the text on the right. The about.php contains this;

<?php

include_once('connections/db101.php');
$link_id = db_connect();
$query = "SELECT title, content FROM pages WHERE idx = 1";
$result = mysql_query($query, $link_id);

while($row = mysql_fetch_array($result, MYSQL_ASSOC)){

$title = $row['title'];
$content = $row['content'];

echo $content;

}

?>

I'm not sure what this means exactly, does it mean the 'About Us' text is in a database?

Copying and excerpt of the text and searching in Developers Toolkit reveals no results. There's no 'About Us' page in the Define Pages Editor in admin.

I can see and edit the text in FireBug but I don't know how to find and it in the file system. I'm stumped.

If anyone can point me in the right direction I would be verrrrrry grateful.

Thanks, Minskin