Posts by BRENO MIRANDA • 144 points
4 posts
-
0
votes1
answer240
viewsA: Registering form data with inputs of equal PHP names
Hello, we can do it this way: ex: <div class="form nome_ch"> <label for="nome_ch">Nome</label> <input type="text" name="data[nome_ch]" id="nome_ch"> </div> ... <div…
-
0
votes2
answers1607
viewsA: Routes of the Codeigniter
You have already declared your default route. $route['default_controller'] = 'welcome'; In case you want to call the controller teste should change the standard control to…
-
4
votes1
answer3068
viewsA: Error: Invalid argument supplied for foreach()
Check if the "$Listed Variables" you are calling and exactly an Array, use Empty() to do this check. if(!empty($listaRecados)): foreach($listaRecados as $r): endforeach; else: echo "Array Vazio"…
-
5
votes1
answer84
viewsA: My php system is working on Windows but is giving error on UBUNTU
Is a problem of case sensitivity. Unlike Windows, Ubuntu will not accept paths where the first letter is uppercase as if all letters were lowercase and vice versa. I noticed that your classes are…