Hi,
I need to concatenate some fields in one field fo build an special id
I have these fields
id - int(11)
id_cliente - int(11)
fecha - date
I use ajax event with the next line
{folio} = {id}." / “.{id_cliente}.” / ".{fecha};
I need the next result folio (varchar (100)) = 1 / 25 / 2011
But don?t works
If I try
{folio} = “Hi”." World";
Works fine
Please tell me how solve this, thanks
Eduardo Cazares