Posts by Daniel Carlos • 76 points
4 posts
-
1
votes5
answers12287
viewsA: How to perform SQL concatenation
You can use sql CONCAT https://docs.microsoft.com/en-us/sql/t-sql/functions/concat-transact-sql select Concat(cast(year(orderdate) as int), '_' ,cast(month(OrderDate)as int)) as Year_Month From…
-
3
votes2
answers213
viewsA: help for View to pass multiple lines to a Controller
@Still, @Html.Listbox will pass an array of the selected Ids in the View. You can take it the way you were doing even using a foreach. Change your POST method to... public ActionResult…
-
1
votes1
answer479
viewsA: Integration between systems with PHP
@William, Maybe this link below will help you. I believe that the best way to exchange information between systems can be using API.…
-
1
votes1
answer173
viewsA: How can I send information to Paypal API PHP
@Gonçalo, The Sandbox is Paypal’s test environment. You will need to create credentials for test(development) and later for production. You create the test user there in the sandbox that you want to…