Posts by Luccas Cerqueira • 95 points
8 posts
-
-2
votes1
answer210
viewsQ: Code error to place watermark
Error mark water in pdf exists in this code ? index document.php <?php session_start(); ?> <!DOCTYPE html> <html lang="pt-br"> <head> <meta charset="utf-8"> <meta…
-
0
votes2
answers60
viewsQ: How to bring a result from a . php page to another . php page using javascript?
The code below is working very well, but it shows the result in his page Submit.php. <?php // submit.php echo $CODNOME; if($_POST['CODNOME'] == "001"){ $msg = "mensagem1"; } else…
-
0
votes1
answer277
viewsQ: How to print the result of a php function from another page?
You can tell me how to finish this project, with this code below I managed to define the message that will appear from the number entered by the user given by the administrator <form…
-
3
votes2
answers319
viewsQ: How to validate value entered in text field with php?
I have a project, which consists of pulling a code inserted by the user in the following field <input type=text name=CODNOME><br> he putting the following value 001 appears an msg…
-
-1
votes1
answer35
viewsQ: Phpmyadmin collecting data unnecessarily?
Below the code I have to collect the $_POST <?php $conexao = mysql_connect("localhost:3306",'user1','senhadementirinha'); $bd = mysql_select_db("recados"); ?> <form name="form"…
-
0
votes3
answers2819
viewsQ: Ways to call image in wordpress
Following <div class="site-branding"> <img src="http://sitedementirinha.com.br/wordpress/wp-content/themes/alizee/images/logo1.png"/> </div> I have this code in a Wordpress theme,…
-
4
votes1
answer22532
viewsQ: How to open link in a new tab?
Follow the code below that I’m having difficulty using target="_Blank" how could I solve this. <div class="opt" onCLick="location.href='#';">Txt</div> THANK YOU VERY MUCH…
htmlasked Luccas Cerqueira 95 -
1
votes1
answer80
viewsQ: How to maintain PHP checkbox data?
as I leave permanently saved at checkbox ----\ <!DOCTYPE html> <html> <body> <form action=""> <input type="checkbox" name="box" value="Bike">Pago<br> <input…