I'm new to development and I'm developing a project for learning.
Here is a question I have about the division of the layout.
What is the best practice?
Have separate header / sidebar footer content parts in different files and do include / r...
Good afternoon guys, I'm having a hard time displaying an "empty data" message in my code, here's how I'm doing:
<?php
$dados = Connection::select("select * from clientes where clientnro ='" . $id_cliente . "'");
$conteudo = $dados->fetc...
Assuming that all% of% of inputs have the same name as the column of the database.
public function create(){
// o que está abaixo é um exemplo com os dados já populados
$arrayDados= Input::all();
unset($arrayDados["_token"]);...
Good evening guys. How can I get information from a form with dynamic array inputs?
The dynamic inputs are when the user clicks a button requesting more inputs.
I'm having trouble getting the response I get after submitting a request via POST
function httpPost($url, $data) {
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS,...
Alright? Well .. I'm a beginner in the world of Web Programming and I'm trying to develop a codeigniter system. could you help me?
I'm trying to make a dynamic form in which I have a select that has the months of the year .. and I would like it...
When I use require_once to do the top-of-site inclusion, it leaves an upper space at about 8px, even in CSS I using body {
padding: 0;
margin: 0;
border: 0;
}; the problem remains.
Here is my complete CSS code:...
I want my login.php to check if the password is uppercase, because when it exists, it recognizes it, since I have my database with the collation utf8_general_ci . I have already tried collation in utf8_bin and latin1_gener...