Guest HARDPASC Report post Posted 08/02/2005 11:33 AM I would like to save in access database the phone number putted by the client during the communication. saving_number.vgs Share this post Link to post
SupportTeam Report post Posted 08/02/2005 12:55 PM Your SQL statement should probably be this: INSERT INTO T_CDC (NUMCDC) VALUES ('$RV[GetCode]') But if NUMCDC field is defined to be a number field then the SQL statement should probably be this: INSERT INTO T_CDC (NUMCDC) VALUES ($RV[GetCode]) Is this what you're asking about or are you asking about something else? Share this post Link to post
Guest hardpasc Report post Posted 08/03/2005 07:51 AM What module use to save phone number pressed on phone by client in a variable " getphonenumber" Share this post Link to post
SupportTeam Report post Posted 08/03/2005 08:02 AM If you want to save the information is a database then you would use the "Db Query" module... which looks like you are using right now... Share this post Link to post