Hello,
I don't want to use formatex in this situation because of the problems with the ^ escape character.
So don't try to tell me about formatex cuz i tried 1000 milion times.
So :
I have :
new Array:szQuerySql = ArrayCreate( 1024 );
Then :
ArrayPushString( szQuerySql, "SELECT `asd` FROM `asd` WHERE (");
Its ok.
Then i want to append to that string ( select bla bla bla ) a piece of strings ( bla2string, bla3stringasd , ");" ).
In the end, i want to obtain the entire string, that looks like select bla bla bla bla2string bla3stringasd ); and print it

.
How to do that ?
I tried with ArrayInsertStringAfter but the string remains as in the beggining.
Please help !
Thanks.
__________________