Posts by Rui Costa • 178 points
10 posts
-
2
votes1
answer47
viewsQ: Set FROM different from the email you are actually sending. Is it safe?
When sending email via php (phpmailer), I can configure all the parameters of the email, however I see that I can do something like this: <?php // Excerto do código $mail = new PHPMailer;…
-
1
votes1
answer243
viewsQ: Pseudo Code Chess
They put a challenge to me to solve through pseudocode: A chess board with only the King and Queen. What is the minimum and maximum number of moves to checkmate the King? Black King, White Queen I…
-
1
votes1
answer944
viewsQ: Internet Explorer 11 does not show picture
Internet Explorer 11 here in the company does not show AN image that is hosted on our website. You can test by the link Link to the image Appears in Chrome, Firefox, Edge, but not explorer 11. I…
internet-explorerasked Rui Costa 178 -
7
votes1
answer29
viewsA: remove php display item
Since you don’t give much detail in your question I’ll try to guess. On a slide you have products that can only be on that slide until dd/mm/yyyy, right? Make this logo selection in mysql: SELECT *…
-
0
votes0
answers85
viewsQ: Upload images for the first time on a website
On this website www.nomalism.com There is a problem: When opening the site for the first time, especially in the store (search or search option) you notice that the images appear blurred or…
-
1
votes2
answers669
viewsA: Do not lose input text when switching pages
You can use jQuery to read the text written in this input: Javascript: $("#teu_input_id").keyup(function(){ var input = $(this).val(); $.post("/backend.php", {"input": input}); }); PHP:…
-
0
votes1
answer110
viewsQ: Research developed in Angularjs
I am completely "zero" in Angularjs and need to improve the search functionality on this site https://www.nomalism.com/pesquisa#/ that was not developed by me. Right now the search is "stuck" to the…
-
1
votes1
answer94
viewsQ: Make changes to a website developed in Laravel 4.2
I am starting development in Laravel and I have to implement new features on a site developed in Laravel 4.2 and by another programmer. I need to create a function that adds lines to a Log-style…
-
0
votes3
answers2517
viewsQ: How to connect PHP 5.6 to Sql Server 2008?
I need to connect to a MS Sql Server 2008 BD with PHP 5.6 Have Development: Windows 7 64bits, with xampp Production Centos 7 I installed the Microsoft drivers. With this line of code $c = new…
-
0
votes0
answers33
views