Posts by Eric Coutinho • 81 points
6 posts
- 
		0 votes1 answer746 viewsQ: Store JSON data in MysqlI have a database in Mysql where, as the project is being developed, the number of fields of some tables has grown exponentially. The People table, for example, has fields relating to personal… 
- 
		2 votes1 answer1278 viewsQ: How to display the text in the datalist and not its value?I made a built-in autocomplete in a field input without much difficulty, as shown below: <label>Professor</label> <input type="text" list="list-professor" name="professor_id">… 
- 
		1 votes2 answers135 viewsQ: Using Templates with PHPHail! I have a system with template that I mounted on PHP represented by the following structure: require("header.php"); require("content.php"); //carregado dinamicamente via GET require("footer");… 
- 
		1 votes1 answer1377 viewsQ: PHP variable storage - $_SESSION x $_GETHello friends. I have a question about best practices applied in development: What would be the best form of temporary storage of variables in an application? I have a PHP application where I can… 
- 
		0 votes0 answers149 viewsQ: Mysql > query with dynamic columnsFriends I have a question.... I have the following tables in Mysql: alunos (id, nome, etc) turmas (id, turma, etc) matricula (id, turmaID, alunoID) disciplinas (id, turmaID) avaliacoes (id,… 
- 
		3 votes2 answers1364 viewsQ: Form submission and out-of-form array via postI have the following problem: I need to send via post the data of a form together with the data of an html table to which I mount a array javascript. Unfortunately, I have no idea how to proceed in…