Posts by Karen Vicente • 106 points
14 posts
-
0
votes1
answer115
viewsA: How to communicate data from my database with chart (Highcharts)?
I made some adjustments to your code: <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport"…
-
1
votes1
answer88
viewsA: Syntax error while reading CSV file
Hello!! The problem is in this line actually: arquivo_projeto.writerow(['nome', 'valor_captado', 'segmento', 'area'] is missing close the ")".
-
0
votes1
answer115
viewsA: Why are you making this mistake again?
Hello!! Try to force the array to Object as follows: $columns = (object) array( array( 'db' => 'nome', 'dt' => 0 ), array( 'db' => 'cidade', 'dt' => 1 ), array( 'db' => 'cep', 'dt'…
-
0
votes1
answer70
viewsA: Date going wrong
Hello!! There seems to be something wrong with your code, I performed a test here and passing that date the value returns correctly. Try using Datetime. Ex: <?php $d = new…
-
0
votes1
answer75
viewsA: Return database data in table
Hello!! try to give an append also on the driver object, just as you did on the other: $lista->append($cs);
-
0
votes1
answer52
viewsA: SQL error in fullcalendar connection
Hello! try to give a console.log(data) and make sure you have the browser console open (just give F12 on the Console page and tab). For it may be that the date is empty, or it is not coming from the…
-
0
votes1
answer45
viewsA: php arrays + function
Hello!! Try to use the return instead of echo, because you want it to store in the array, but the function is no return.
phpanswered Karen Vicente 106 -
0
votes1
answer78
viewsA: Undefined index php help
I believe this problem is happening because there is no Session with value 'x' defined. By its code, Session is defined in a javascript function that is never called :/. That is if you try to use…
phpanswered Karen Vicente 106 -
0
votes1
answer22
viewsA: Because my project is not being accepted, I am using mysql6.3
Hello tries to use the following syntax as a basis for your process: DELIMITER $$ CREATE PROCEDURE nome_procedimento () BEGIN /*CORPO DO PROCEDIMENTO*/ END $$ DELIMITER ; 'Cause it seems like a…
-
0
votes1
answer96
viewsA: Process on the server and return in a PHP Input
I think a very simple way to do this would be (if you don’t know the language very well yet), use the shaman with apache to run the files. If you use xampp, after it’s installed, just add your files…
-
0
votes1
answer162
viewsA: Syntax error in Procedure Mysql
Hello!! Try changing the end of the mysql statement For example: DELIMITER $$ CREATE PROCEDURE nome_procedimento () BEGIN /*CORPO DO PROCEDIMENTO*/ END $$ DELIMITER ; In this part: END $$ DELIMITER…
-
2
votes1
answer6413
viewsA: INSERT and INNER JOIN together in Mysql?
Siim is possible!! According to your description, I created the following example: 1- I created a database named "test" 2- I created the following tables: Table: to Columns: x, y and z - Table: b…
-
3
votes1
answer1708
viewsA: user location by IP
Have you tried this way? with Geolocation.... in JS /*início código de geolocalização*/ function GeoLocalizacao() { if (navigator.geolocation){//verificando se há suporte para API de Geolocalização…
-
0
votes1
answer34
viewsA: Show table header for each new table row
Will the table and rows be placed in a loop (for, while)? If it is the header it can be a row inside the tag. Just below you will add another row that will be the table inside the tag . being more…