Posts by Jhonatan Raul • 56 points
8 posts
-
0
votes1
answer691
viewsA: Phpmailer "Language string failed to load: tls"
The solution for Phpmailer 6.1 has been found: I checked if there was any service running on SMTP port 465, and did not return 220 as per tips, so I tried $this->Port = 587; and it worked! :)…
-
0
votes1
answer691
viewsQ: Phpmailer "Language string failed to load: tls"
I am not able to send e-mail by Phpmailer 5.1, I used the following class: <?php require_once(__DIR__.'/../../PHPMailer/class.phpmailer.php');…
-
0
votes1
answer404
viewsA: Loop without repeating Nodejs + mysql data?
RESPONDING WITH UPDATE 04/09/2018 TO LEAVE QUESTION AS SOLVED I solved my problem for now, passed the function to the front and now I do X post via ajax, where x is the number of objects of my JSON:…
-
0
votes1
answer680
viewsA: Place profile photo in Nav_header
If what you want is to use the database photo to display in Nav_header_photo you will need to rescue this Url from the database, and this is done according to your application. Here is an example of…
-
1
votes1
answer40
viewsA: Menu Javascript Getid
If you want to create another menu for other features I believe the best way is to use getId, however you will have to put unique ids to render. You can even create functions with parameters, but…
-
-1
votes2
answers74
viewsA: Hello, I have an unwanted horizontal margin between two Divs, I would like to know where the error is
The standard values of p{[...]} are affecting in the margin. Reset this class in your css: .TxtDigi { max-width: 70%; text-align: center; font-family: 'Courier new', courier, monospace; font-size:…
-
0
votes1
answer110
viewsA: How to limit the number of lines in a text with Javascript/jQuery?
With responsive width has no way, because as you said yourself: "the number of characters in each line changes according to the width". What you can do is set fixed width for the element that is the…
-
0
votes1
answer404
viewsQ: Loop without repeating Nodejs + mysql data?
I need to insert the DESCRIPTION field into a CATEGORY table; I have my data in JSON format (already on the server); My loop runs the sequence of steps: Checks whether the "category" field exists in…