Query Question!!!

12/22/2010 12:47 Mr_PoP#1
we can use 1077 as MYSQL command and data as 5 so we can

PHP Code:
SELECT name FROM cq_user WHERE id=1000000 
and we can use 101 and %iter_var_data5 so we can see the result but the problem is the %iter_var_data << can handle only numbers so it's always giving me a ruslt of 0 is there a way to get a value of text from aonther table

i hope you got it!!?
12/22/2010 19:50 PraDevil[ELITE]#2
if you would like to pick one id from the cq_user it will be easier if u use this..
Code:
select * from cq_user where id='id here';
or u can use this for easiest
Code:
select * from cq_user where name='character name';