Posts by Omar Jadalla • 36 points
2 posts
-
1
votes1
answer119
viewsA: Filter Data from a PHP database list from an Input
The only way to do this without updating the page is with Ajax. To do this you have to use the sql LIKE operator along with the %: "SELECT coluna FROM tabela WHERE coluna LIKE '$variavel%' " Where…
-
1
votes2
answers217
viewsA: Setting the color of a div in rgb
You’re setting the color with 'orange' and comparing with 'rgb(#FF6600)' have to compare with the same value you set. Best to use a variável or a checkbox(the most used).…