First I'd advise you to read a little bit about coding standards. The code you have is completely unreadable.
Second, the query you build uses a var called $Title, but the only place where $Title is used is inside the query. Where do you define what $Text should be?
A few notes on the side:
Why do you first run the query without the LIMIT clause and then again with the LIMIT clause? makes no sense to me.
You check for errors (good boy) but all you do is print the error:
$getTotalRows = mysql_query($sql,$con);
if (!$getTotalRows)
{
echo mysql_error();
}
and then you proceed to work with the query results no matter if there was an error or not.
Have a look at this:
http://www.hvt-automation.nl/yapf/index.php?cmd=viewitem&itemid=12
but most important of all, teach yourself to write readable code!