Quote:
Originally Posted by KiLLeR.
PHP Code:
new const str[] = "%i text...";
new integer = 5;
formatex(text, charsmax(text), "%s", str, integer)
Output is "%i text...", but I want to be "5 text...", this is impossible?
Sorry if the title is wrong!
|
formatex(text, charsmax(text), str, integer)
__________________