yes we can help. But you need to give us more information about your problem. As far as I can see this is wrong: ' $text_1_value'; You can never call a variable with single quotes. You have to use double quotes:
oFCKeditor.Value = "$text_1_value";
or even better is:
oFCKeditor.Value = $text_1_value;
Are you sure the query is right? Have you checked it yourself? When the query doesn't give any result the page will stay blank.
Post some of your code here and the results you (don't) get.
Re: Problem while loading content in php
As far as I can see this is wrong: ' $text_1_value';
You can never call a variable with single quotes. You have to use double quotes:
or even better is:
Are you sure the query is right? Have you checked it yourself? When the query doesn't give any result the page will stay blank.
Post some of your code here and the results you (don't) get.