19.06.2010, 16:34
Hey so yea I've now tried 50000 times to get %s working at any of my places where I need it with no luck, like an example: I got a bank status page.
format(string2,300,"Bank Name: %s\nAmount: %d\nTransfer ID: %d",strval(field[1]),strval(field[3]),strval(field[0]));
It shows Amount, Transfer ID, but not Bank Name because it uses %s and if I'm right then only %s works if you want text and not numbers to appear? My mysql tables is: VarChar(256) at Bank Name
format(string2,300,"Bank Name: %s\nAmount: %d\nTransfer ID: %d",strval(field[1]),strval(field[3]),strval(field[0]));
It shows Amount, Transfer ID, but not Bank Name because it uses %s and if I'm right then only %s works if you want text and not numbers to appear? My mysql tables is: VarChar(256) at Bank Name