
Jai
Members-
Posts
21 -
Joined
-
Last visited
Everything posted by Jai
-
I have studied php introduction and php advanced object oriented programming, Was able to get my hands on small projects such as building small websites, Buiding forums. I will like to know which project book is the best php project book guide to guide developers on building dynamic applications(such as social media platforms, educational platform, online libraries...etc) using php. Which is the best with detail and straight forward explanation.
-
Thanks once more Necuima. yours sincerely, Jai.
- 9 replies
-
- php and images
- php and pdf
-
(and 2 more)
Tagged with:
-
I figured out.. that to use phpmailer, the class had to be defined first(i.e. immediately after the opening php tag) before any line of code. The mistake i did when trying to use it before was; i included the class only within the body of my script when the code for the message section was written which then threw the exception (UNCAUGHT ERROR ;PHPMAILER CLASS NOT FOUND). So in order to use the phpmailer to send email from a particular script, I did as this: <?php //define the phpmailer class use PHPMAILER\PHPMAILER\PHPMAILER; use PHPMAILER\PHPMAILER\Exception; /* here comes the code for the script, for instance including a script, validating the form, checking if the form has been submitted, submitting and whatever.. */ /* After wriiting all the codes above, the section of code which should send the mail is the phpmailer body with my credentials for authentication. */ require 'absolute path to the autoload.php file'; $mail = new PHPMailer(TRUE); try { $mail->setFrom('email@example.com', 'optional'); $mail->addAddress($trimmed['email'], $trimmed['first_name']); $mail->Subject = 'Subject'; $mail->Body = $body(comes from the lines of codes written above before this section of codes); /* SMTP parameters. */ /* Tells PHPMailer to use SMTP. */ $mail->isSMTP(); /* SMTP server address. */ $mail->Host = 'smtp.gmail.com'; /* Use SMTP authentication. */ $mail->SMTPAuth = TRUE; /* Set the encryption system. */ $mail->SMTPSecure = 'tls'; /* SMTP authentication username. */ $mail->Username = 'email address to be use to send the mail to other email addresses'; /* SMTP authentication password. */ $mail->Password = 'password of email address used to send the mail to other email addresses'; /* Set the SMTP port. */ $mail->Port = 587; /* Finally send the mail. */ $mail->send(); } catch (Exception $e) { echo $e->errorMessage(); } catch (\Exception $e) { echo $e->getMessage(); } // finish the page echo '<h3>A message to confirm that the mail was sent.</h3>'; include('includes/footer.html'); exit(); NOTE: I HAD TO TURN ON LESS SECURE APPS PERMISSION FOR THE GMAIL ACCOUNT WHICH IS USED TO SEND EMAILS TO OTHER EMAIL ADDRESSES. NOT TURNING ON LESS SECURE APPS FOR THE RECIPIENTS ACCOUNT
- 9 replies
-
- php and images
- php and pdf
-
(and 2 more)
Tagged with:
-
Necuima, I finally succeeded in using PHPmailer, i ll find a day to post about the success. Thank you Yours sincerely, Jai.
- 9 replies
-
- php and images
- php and pdf
-
(and 2 more)
Tagged with:
-
Hello, i have been studying this book "php 6 and mysql 5 for dynamic website" on my own... i am happy i finished studying this book and this gave me an advanced basic understanding in PHP and MYSQL. Please i will like some recommendations on which php and mysql book to study/buy next in order to have more advanced knowledge in php and mysql. So as to be able to create a section in my web application to read pdf files. And also to be able to create an e-commerce application. Thank you, Jai.
- 9 replies
-
- php and images
- php and pdf
-
(and 2 more)
Tagged with:
-
Now i am just going along with the login steps in chapter 11 of the book.
- 13 replies
-
- register.php
- activate.php
-
(and 1 more)
Tagged with:
-
Hi Necuima, thank you i did check the link and it redirects to a page that suggest i should turn off "less secure apps" in my google account which i did quite well but still turns out i am not able to send mail. Thank you, Jai.
- 13 replies
-
- register.php
- activate.php
-
(and 1 more)
Tagged with:
-
Hi Necuima! i have been able to do the installation of phpmailer and put my credentials successfully, but when i run the script on my browser, i have this resulting Please could you explain what it really means because i turned of the 'less secure app' in my google account but i still couldn't receive any message. Thanks Jai.
- 13 replies
-
- register.php
- activate.php
-
(and 1 more)
Tagged with:
-
Ok, Please after creating the phpmailer file as describe above, where do I include the file? is it possible for me to include this in the php script which i have created to send the mail, the user who wants to login?
- 13 replies
-
- register.php
- activate.php
-
(and 1 more)
Tagged with:
-
During the installation of the composer, there is an option that state "use a proxy server to connect to the internet". Could this please have something to do with sending the mail to ? As for now i am doing without it.
- 13 replies
-
- register.php
- activate.php
-
(and 1 more)
Tagged with:
-
Thank you Necuima, i'll work on this and keep you posted Jai.
- 13 replies
-
- register.php
- activate.php
-
(and 1 more)
Tagged with:
-
Please could anyone help me get this problem resolved, Not being able to send mail using Xampp after i had followed the various instructions and also done some searches that does instructs same thing about php.ini and sendmail.ini file
- 13 replies
-
- register.php
- activate.php
-
(and 1 more)
Tagged with:
-
Mr. Larry here is a screenshot of the xampp control panel Thanks, Jai.
- 4 replies
-
- sending email (example 8.10)
- xampp
-
(and 1 more)
Tagged with:
-
Xampp v3.2.4 and windows operating system
- 4 replies
-
- sending email (example 8.10)
- xampp
-
(and 1 more)
Tagged with:
-
It will be my pleasure Mr. Larry, since i have tried various ways to no avail did i succeed.
- 13 replies
-
- register.php
- activate.php
-
(and 1 more)
Tagged with:
-
Hi, with reference to chapter 10 and 16 of Mr. Larry's book "PHP 6 AND MYSQL 5 FOR DYNAMIC WEBSITES visual quickpro guide" low price edition, please i'll like to receive help from this forum too as well as to configure Xampp in order to be able to send mails. Please i'll be ever grateful if i can receive help from here. i have gone through various links and videos but to no avail did I succeed I as well watched this video on youtube inorder to configure mercury to send mails but still didn't succeed. Thank you.
- 4 replies
-
- sending email (example 8.10)
- xampp
-
(and 1 more)
Tagged with:
-
Hello i am new to this forum, with reference to Mr. Larry's book " PHP 6 AND MYSQL FOR DYNAMIC WEBSITES VISUAL QUICKPRO GUIDE" low price edition. Please, i have been trying to login a user for the pass two days but i am not getting it right because i can't access the login page without activating the account which is done by clicking the the link in the email. So the problem is i don't receive the email after configuring the sendmail.ini and the php.in for the email, therefore i am stuck and i can't proceed. i even downloaded thunderbird for sending and receiving the emails and also configured the mercury and added new users through on the control panel admin->configuration->manage users->Add... I even tried creating the simple login page that will not require the user to activate his account through the link using the example in chapter 11. But still couldn't get it right. Please i will really like to have help from this forum, Thank you.
- 13 replies
-
- register.php
- activate.php
-
(and 1 more)
Tagged with: