Posts by Iago Gutierre • 35 points
3 posts
-
0
votes1
answer48
viewsA: Problems with C arrays input
Since you are working with strings, you need to create arrays with enough space to store the delimiter ' 0' (counter bar zero). https://pt.wikibooks.org/wiki/Programar_em_C/Strings…
-
0
votes1
answer556
viewsQ: All Apache requests pointing to the same directory
I set up a Vhost for my project as follows: 1 - I added a line to the file /etc/hosts containing local address, url and alias 127.0.0.1 meuprojeto.com meuprojeto 2 - I added the file meuprojeto.conf…
-
3
votes1
answer335
viewsQ: Do controllers necessarily need to be classes?
When we are developing a system using MVC from scratch, each controller needs to be a class or I can simply use a file containing some functions that will be called as the action sent by View?…