Posts by Gustavo Freitas • 217 points
4 posts
-
2
votes1
answer115
viewsQ: Difficulty with filter in Angularjs
Guys I’m having a hard time developing a table filter that has the fields name and price. I would like to filter a respective price with the following conditions: = (equal) > (greater) <…
-
2
votes2
answers258
viewsA: Problem when customizing search bar
Follows friend <html> <head> <!-- Bootstrap CSS--> <link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet"> <link…
-
3
votes1
answer131
viewsA: Pdoexception error
Your connection is incorrect. Use the connection below. try { $conn = new PDO('mysql:host=localhost;dbname=meuBancoDeDados', $username, $password); $conn->setAttribute(PDO::ATTR_ERRMODE,…
-
3
votes2
answers325
viewsA: echo is printing the HTML tags
The problem is in your echo you are using double quotes to declare the content of echo and as in your tag html there are double quotes you should use single quotes as in the example below or…