The thing I need to do is putting same text what contains php functions to the MYSQL table. NB! I don't vant to do a php help table - the php functions must do the work. The problem is that I can't value these functions. I thought it has to be like this:
$foo = include("somefile.php"); or
$foo = "while smth. = smth. {
do smth.
}";
but it doesn't work. I know that when I use
echo"<input value="include("somefile.php")">";
I have the somefile in the next page, but thats like doing the double work and I think that it will also slow the script.
Please help me,
Thank U
Tony