I am storing some amount in MySQL database, as it a profit amount so I show as Eg: +20
but + sign got remove as it saves in the MySQL database.
is there any command or something I can do?
I am storing some amount in MySQL database, as it a profit amount so I show as Eg: +20
but + sign got remove as it saves in the MySQL database.
is there any command or something I can do?
1.Encrypt the data
2.U can also save just 20 in db
And on data fetch when u have to show data u can use join text block and join plus sign with 20
Maybe : Select Sign( yourfield ) from yourtable
Return
I solve it like this :
I save the data from the user application. ==== p20
I receive the data as === p20
I saw the data in the list as +20
Logic ( replace all text )= list
(segment)= p
(Replacement)= +
result = +20
SOLVE
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.