Posts by Bruno Aguiar • 11 points
5 posts
-
0
votes1
answer450
viewsQ: How to send Phpmailer and values to a Mysql database
I am trying to send the form data to an email using Phpmailer (this is already working) and take advantage to include this data in a Mysql database table. It didn’t work, I imagine the error is in…
-
0
votes2
answers431
viewsQ: Sender’s email is the default email in the form
I would like the email and name of the person filling the form, appear as the sender in my email box, otherwise google groups the messages from the same sender. $mail->Sender = "xxxxxx"; // Conta…
-
0
votes0
answers39
viewsQ: Send form to two locations and redirect
I need the script to send my form to two places and after sending to the reply page. <script type="text/javascript"> function EnviaForm2() { document.getElementById('formnewsletter').action =…
-
1
votes1
answer422
viewsQ: FPDF - I need to customize the text that will be printed
I need the contents $pdf->MultiCell be customized(html) with bold, etc... <?php require_once( 'fpdf.php' ); $nome = @$_POST['nome']; // Sim, a supressão é perfeitamente válida neste contexto…
-
0
votes2
answers463
viewsQ: take a JS variable’s value and put it in the input value
I need to put the result of this javascript in the input value for php to identify the variable. var mydate=new Date() var year=mydate.getYear() if (year<2000) year += (year < 1900) ? 1900 : 0…