Posts by Fernanda Ferreira • 197 points
15 posts
-
0
votes0
answers86
viewsQ: Fromname receiving "1" when sending the email
I configured Phpmailer to send contact form and everything worked out except the Fromname that arrives in the email always with the number 1. Would anyone know what’s going on? Name: $name E-mail:…
-
4
votes1
answer299
viewsQ: How to take a column in the database, perform a calculation and send it to the grid
I want to perform a calculation using the value of the VAL_VIDA_UTIL field of my BD and then save the result since calculation in a new variable VAL_DEPRECIACAO and pass to my fieldName, but I’m not…
-
0
votes2
answers368
viewsQ: Fill in inputs from an iframe
Good afternoon. I wonder if it is possible to fill in the iframe inputs through Javascript. <iframe src="http://frame.com" width="100%" height="800" id="frame"></iframe> I know the name…
-
1
votes2
answers1631
viewsQ: Error message when placing translation in Codeigniter
Someone knows how to fix this: An Error Was Encountered: Unable to load the requested language file: language/English-Brazilian/form_validation_lang.php I followed the following steps for the…
-
1
votes2
answers172
viewsA: Placing a Bootstrap class inside a form generated with Codeigniter
I managed to solve. echo form_label('Nome Completo','',array('class'=>'sr-only'));
-
0
votes2
answers172
viewsQ: Placing a Bootstrap class inside a form generated with Codeigniter
Can anyone tell me what I call the Bootstrap classes within a form I generated using Codeigniter? From what I’ve researched it uses an associative array, but I’m not getting it. For example, in the…
-
0
votes1
answer79
viewsQ: Data check
I have a screen that is sending to table emails through $_POST. After that goes to a voting screen. I want to make sure that the email that has already been sent cannot vote again, but I’m not sure…
-
0
votes1
answer383
viewsQ: Compare URL to PHP
I want to make a if to compare Urls, I tried using parse_url... but I’m not sure how to use it. Someone could help me out a little? <?php $url1 = parse_url ( "http://enquetegoias.esy.es" ); $url2…
phpasked Fernanda Ferreira 197 -
1
votes1
answer644
viewsQ: Comparison with Stock and Sort
Good afternoon, I’m starting in Java and I have a little problem. I want to sort my list alphabetically. I created a class Pessoa and another class TestaPessoa. Person public class Pessoa implements…
javaasked Fernanda Ferreira 197 -
1
votes1
answer52
viewsA: I used setcookie on my local server and everything worked out, but when I climbed to the local server does not work
If anyone ever goes through a problem like setcookie, here’s the solution I found: ob_start (); // No início do código ob_end_flush (); // No final do código To learn more about ob_start and…
-
1
votes1
answer52
viewsQ: I used setcookie on my local server and everything worked out, but when I climbed to the local server does not work
I used setcookie("votados".$_POST['votacao'], 'yes', time()+86400*300); on my local server and worked divinely well, but when climbing it does not work. Like, he was supposed to check whether the…
-
1
votes1
answer304
viewsQ: Checkbox and Phpmailer
Hello, everybody! I am unable to send checkbox values through Phpmailer. Could someone give me a hint? $precisa = implode(",", $_POST['precisa[]'] ); <label> <p style="margin-right:…
-
2
votes1
answer899
viewsA: Like SQL with multiple fields
Here’s the answer I found: <?php $total = mysql_query('SELECT COUNT(*)TOTAL FROM tbl_cadastro_curriculo' ); $cargo = $_POST['cargo']; $formacao = $_POST['formacao']; $sexo = $_POST['sexo'];…
-
0
votes1
answer899
viewsQ: Like SQL with multiple fields
I want to make a select for a search of five fields (position, training, sex, schedule, photography). But it is not working. Could someone tell me why? <?php $cargo = $_POST['cargo']; $formacao =…
-
5
votes2
answers5698
viewsQ: Click on a link and print the landing page as soon as it opens
I’m using self.print() to call print and this opens the option to print the page I am on. However, I would like that before calling the impression could go to another page through the href... All…
javascriptasked Fernanda Ferreira 197