Vincent Posted July 23, 2013 Group: Members Topic Count: 130 Topics Per Day: 0.03 Content Count: 528 Reputation: 18 Joined: 09/11/12 Last Seen: March 5, 2020 Share Posted July 23, 2013 Hi, i try to save the date into a variable. .@time_new = gettimestr("%Y-%m-%d",21); But the variable save's only the year 2013 as date. The problem is the "-" between Y-M-D. How can i save the hole date as var with the "-". Quote Link to comment Share on other sites More sharing options...
Brian Posted July 23, 2013 Group: Members Topic Count: 75 Topics Per Day: 0.02 Content Count: 2223 Reputation: 593 Joined: 10/26/11 Last Seen: June 2, 2018 Share Posted July 23, 2013 You could store it in a string (.@time_new$) instead of an integer variable (.@time_new) 1 Quote Link to comment Share on other sites More sharing options...
Vincent Posted July 23, 2013 Group: Members Topic Count: 130 Topics Per Day: 0.03 Content Count: 528 Reputation: 18 Joined: 09/11/12 Last Seen: March 5, 2020 Author Share Posted July 23, 2013 That was easy. Thanks Quote Link to comment Share on other sites More sharing options...
Emistry Posted July 27, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: 2 hours ago Share Posted July 27, 2013 .@time_new = atoi( gettimestr("%Y%m%d",21) ); you can do like this .... Quote Link to comment Share on other sites More sharing options...
Question
Vincent
Hi,
i try to save the date into a variable.
But the variable save's only the year 2013 as date. The problem is the "-" between Y-M-D. How can i save the hole date as var with the "-".
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.