Posts by Hércules Moreira • 191 points
5 posts
-
1
votes0
answers125
viewsQ: Where do I put my classes in the MVC standard?
I am writing a MVC application in PHP and the directory structure is as follows: - root ¬ app ¬ controllers ¬ models ¬ views ¬ core ¬ config ¬ public In the "app" folder is the MVC layers. In…
-
1
votes2
answers128
viewsA: Bank registration via Ajax
The first "mistake" is not exactly a mistake, it is a news, a kind of warning. You’re just saying that a variable is undefined, that is, you don’t assign any value to it. To get rid of this "error"…
-
9
votes0
answers477
viewsQ: How to install and configure the Boost C++ library on Windows?
For some time I have been working hard to learn C and C++, I believe I already know enough to write a slightly more complex application using Sockets and Threads. Searching a little, I discovered…
-
0
votes1
answer88
viewsQ: Can anyone tell us why this Lazarus/Pascal code is a mistake?
It is a simple class with get and set methods, but it generates an error when invoking any of the functions or procedures (at first I thought this only on line 43). unit uPais; {$mode objfpc}{$H+}…
lazarusasked Hércules Moreira 191 -
7
votes2
answers616
viewsQ: How do I make my C++ programs multi-architecture (32 and 64 bit)?
Developing a native C++ application using Devcpp and the Mingw compiler, when running the application on another machine I noticed an error regarding the architecture, because my program only runs…