Posts by Agnelio Lhavanguane • 179 points
9 posts
-
-1
votes1
answer41
viewsA: Warning: mysqli_real_escape_string() expects Parameter 1 to be mysqli,
You have to define the nature of the variable $conexao before using it.See the link below how to proceed, maybe this helps you. https://www.w3schools.com/php/php_mysql_select.asp…
-
0
votes2
answers202
viewsA: Change the position of a word in the text (Javascript)
Save text in a variable var txt = "Este é o paragrafo, esta é **palavra** a ser movida" Keep the word in a variable var word = "palavra" After selecting the positionvar pos Makes: var…
-
1
votes1
answer103
viewsA: How to adjust email text to the box?
Try this: .textoEmail {overflow-wrap: break-word; word-wrap: break-word; } Source css-Tricks…
-
0
votes2
answers625
viewsA: Pass PHP ID to Jquery Modal Window
I think you should make the following display all the results <?php $result = mysql_query("SELECT * FROM alunos WHERE Dia_Horario LIKE '%".$searched_time."%' " ); $check_time =…
-
0
votes3
answers1923
viewsA: Problem with image height
Try this quick solution, although not very effective .slide img {width:100%; height:100%;}
-
5
votes5
answers599
viewsA: css properties do not bootstrap effect
Check whether in the <head>your CSS was inserted after the bootstrap. The rules are executed sequentially.
-
0
votes2
answers625
viewsA: Pass PHP ID to Jquery Modal Window
Search results PHP: ... echo ("<a href='#' classe='nomecompleto' title='".$full_name"'>".$full_name."</a>"); ... Save the data on the client side this way, so you don’t need to make a…
-
1
votes1
answer111
viewsA: How to make page transaction
You would have to create a file relatorio.php in the same directory as index.php Instead of <input type="submit" value="Relatório"> do <a href="relatorio.php"> Relatório </a> Do…
-
8
votes2
answers1776
viewsA: How to approve author posts in Wordpress?
One way to do this without resorting to plugins is to demote Authors to Contributors. Thus, the option that appears to them is "Submit for review" instead of "Publish". To change profile: Users >…
wordpressanswered Agnelio Lhavanguane 179