Sorry for the question I asked, but I tried to pass a numeric variable to a string, but it does not take results. For example, in my database I have a field called "plano" type varchar and I need to save it in this way 088, but when I print the varible it only takes me 88, my code bit is like this
$nw="0";
$codigo=$nw."".$plano[0]->plano;
I must put something that I'm missing, so I can take the 0 that I need and save 088 and not 88.
Thanks