Posts by Marcos Wendel • 319 points
8 posts
-
0
votes1
answer328
viewsQ: How to remove column spacing in bootstrap
Good afternoon everyone, I am working with columns and I came across a problem that has been hitting me for a long time, as you can see in this example https://jsfiddle.net/qt542gLo/, I need that…
-
0
votes1
answer75
viewsQ: Ajax requests do not stop loading
I have been with this problem for many days now, I have a page where externally loads the link from a security camera to display the image on the main page, so far so good, the image shows normally…
-
0
votes1
answer246
viewsQ: Query in SQL, query a limited number of record
I am having a problem regarding the limit of return of information per query, For example: I have a table called "Cars". This table has 2 fields "Model" and "Color". How can I make an appointment…
-
13
votes1
answer2046
viewsQ: What is the purpose of the "Return true;" command at the end of a function?
I noticed that in many functions in javascript I see at the end a return true. function EscreveDados(){ document.getElementById("divData").value = 'texto'; return true; } and in HTML we have the tag…
-
5
votes1
answer162
viewsQ: How to create a textarea with multi columns (like a newspaper?)
There is a way to create a textarea that its display form is in multi columns?. I have several fields in textarea for the user to be able to make edits, but I need these textareas to be displayed in…
-
0
votes0
answers45
viewsQ: How to create word document with php?
Good afternoon, How do I generate a report in office word(.doc or .docx) format with php? , just as we use php FPDF,TCPDF,MPDF classes to generate pdf reports, how can we generate report in the…
-
2
votes1
answer804
viewsQ: Store all array positions in a variable?
I have an array that contains 3 positions, each of them stores a long text, how can I do to store in a single variable all these 3 positions of the array. for example: Array['Gol', 'Pallium',…
-
0
votes0
answers62
viewsQ: FPDF Positioning Problems Sety()
I was recently using the PHP Fpdf class to generate my report, but I have the following problem: How do I position an image that is there on the last page of the report to the first? (I want to not…