Posts by Diego Keller • 136 points
8 posts
-
1
votes1
answer72
viewsA: PHP - opening/closing
The PHP opening and closing tags are processed on the server. When you view the source of a page made in PHP via the browser, these tags will never be displayed.
phpanswered Diego Keller 136 -
1
votes1
answer42
viewsA: Jquery simultaneous duplicate chat notifications
I suggest you change your service that returns the messages that will be notified, so that when returning a message, you already mark it as "read" (one more field of the message table). And when…
-
0
votes2
answers2012
viewsA: Can I have a settings table without Primary key?
Yes, you can have this settings table without a primary key. When searching, you will add a LIMIT 1 to bring only one line in the result. Although I believe that the inclusion of the primary key is…
-
1
votes3
answers1182
viewsA: Pagination in PHP
I believe that in addition to LIMIT you will need to specify the OFFSET, to indicate from which record you want to bring. Examples: Page 1: LIMIT 5 OFFSET 0 Page 2: LIMIT 5 OFFSET 5 Page 3: LIMIT 5…
-
2
votes2
answers2198
viewsA: Importing EXCEL data into PHP!
Yes, you can do this via PHP as well. You will need to download the file using the PHP file_get_contents() function. You will need to use a library to read the contents of Excel files, for example:…
-
1
votes1
answer36
viewsA: I cannot display the value received from the server
You may be generating an infinite loop with that while, and the program gets so busy running while it doesn’t have time to update the screen. Try placing the following command inside while on the…
-
3
votes2
answers4315
viewsA: Modal ajax mail tracking
Unfortunately, you will not be able to use the post office website directly. You will need to develop an application, which using the post office API (manual posted by Felipe), make a request to the…
-
0
votes2
answers161
viewsA: Chart Jquery entering array values
If your "Alert" is working and showing the data correctly, then it seems to me that what you need is to adjust the structure of the arrays you are mounting. For example, the variable "date" must be…