Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani … Address: " . $_POST['Email'] . "\r\n" . "Phone Number: " . $_POST['Phone'] . "\r\n" . "Comments or… Question Answering with YouTube Videos Using RAG in LangChain Programming Computer Science by usmanmalik57 …, add_video_info=True).load()) print("=====================================") print(f"Total number of videos: {len(docs)}") print("=====================================") print("… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani > After code changed, not only will still not send email but screen turns blank white. That's a PHP fatal error. It could be a syntax error, or it could also be that PHPMailer is not in the location you're telling PHP to look. Do you have any way of accessing the error log? Without access to the server, perhaps through a web-based control … Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim Hi David, > More problems. I incorporated the coding Biiim provided. Before any changes, after submission, would display the correct (yellow) screen. After code changed, not only will still not send email but screen turns blank white. URL provider, IONOS, told me that the Host is smtp.ionos.com and the Username and password are for an email… How NOT to do business online Digital Media Digital Marketing by Reverend Jim … phone to my laptop. The only phone number provided was not a toll free number. As a first time buyer I was… How Build Html form ? Programming by Kirubel_2 …;text" name="age" placeholder="Enter secret number of Berhan bank" style="margin-top: 40px;"…" name="image" placeholder="Enter Your account number(Berhan Bank) " > </div> <div class… Using Natural Language to Query SQL Databases with Python LangChain Module Programming Computer Science by usmanmalik57 …;Give me the name of top 10 customers with most number of orders" response = get_db_response(sqlite3_uri, query) ``` **Output:** ![image4.png…(response['output']) ``` **Output:** ``` The top 10 customers with the most number of orders are: 1. Customer LCOUJ with 31 orders 2… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … Address: " . $_POST['Email'] . "\r\n" . "Phone Number: " . $_POST['Phone'] . "\r\n" . "Comments or… Address: " . $_POST['Email'] . "\r\n" . // "Phone Number: " . $_POST['Phone'] . "\r\n" . // "Comments or… Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …;Name: " . $_POST['ShowingName'] . "\r\n" . "Phone Number : " . $_POST['ShowingPhone1'] . "\r\n" . "E-mail… What would you like to see in a business directory? Programming Web Development by FarrisFahad … listings parameters like website url and email address or phone number. What else should I include? I am not sure if… How to Optimize RecyclerView performance by implementing the ViewHolder Programming Mobile Development by Mikekelvin … utilize the ViewHolder pattern to improve performance by minimizing the number of findViewById() calls. public class MyAdapter extends RecyclerView.Adapter<… Re: ABC for Github-programs and Python Programming Software Development by Reverend Jim I have developed a number of GUI applications in python. I found that the wxpython package was far better than tkinter. wxpython is based on wxwidgets which is essentially windows controls. Because wxwidgets are compiled for each major system, controls rendered by wxpython look like the native controls for whatever system is hosting. Re: Improve HAVING BY performance Programming Databases by Dani … time down from 100ms to 50ms, you can *double* the number of pages of your website that Google is going to… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa … // Add a new ball when a collision occurs and the number of balls is less than MAX_BALLS if (b.size() <… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa …(); // Add a new ball when a collision occurs and the number of balls is less than MAX_BALLS if (b.size() <… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … ahead of me and would I like to leave my number for a callback. I did so and after two more… Re: 88 Business-Growing Strategies Digital Media Digital Marketing by henrymorgan9522 A growth strategy is an organization's plan for overcoming current and future challenges to realize its goals for expansion. Examples of growth strategy goals include increasing market share and revenue, acquiring assets, and improving the organization's products or services. Re: How NOT to do business online Digital Media Digital Marketing by rproffitt Someone wanted me to pay with Venmo which I also have never used. Sorry, but I don't want to add more apps today. Re: How NOT to do business online Digital Media Digital Marketing by Dani Not that it is an excuse, but I would like to offer up an explanation, if I may. You can [see here](https://www.daniweb.com/programming/web-development/threads/541688/airtm-api-how-to-build-a-form) that only 4 days ago, FarrisFahad had a button to pay by Paypal on his website, and wants to convert it into utilizing a payment API (e.g. something … Re: How NOT to do business online Digital Media Digital Marketing by Reverend Jim I could understand that for a small company but it looks like this place (US based) also has a Canadian presence. And judging by [their range of products](https://www.thewoodveneerhub.ca/) they aren't a small company. In any case, after pricing out what we wanted ($800+) and failing to get an alternate payment option we decided to invest in a … Re: How NOT to do business online Digital Media Digital Marketing by Dani > I could understand that for a small company but it looks like this place (US based) also has a Canadian presence. According to their about us page, it’s a family owned business run by a guy named Lawrence who has been in the industry since the 1970s but just started his own business in the 2000s. Which fits the profile I had laid out. (Eg … Re: How NOT to do business online Digital Media Digital Marketing by Reverend Jim Fair enough. Re: What would you like to see in a business directory? Programming Web Development by Dani I hate to tell you this, but Google *hates* web directories and none rank anymore. Gone are the days of Yahoo!, Dmoz, etc. I don't want you to waste a lot of time because I personally don't feel you'll be able to sell a lot of these. There are some paid models that still exist today, such as The Yellow Pages, Yelp, and Angi. I would browse sites… Re: What would you like to see in a business directory? Programming Web Development by antwanlee There are already about a trillion sites that do exactly that. If you want that do make money from users, build a site that signs them up for all other business directories for a one time fee. If you want to make money from marketing, you will have to get a high domain authority (DA) score for your site so that users are encouraged to sign up… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani The first thing I will say is never output `$_POST[]` content directly into the HTML without escaping it first. You are leaving yourself wide open to an HTML injection attack. Not only that, but you're also leaving yourself open to invalid HTML. All it takes is to wrap your user-sent variables with htmlspecialchars to make sure they're HTML-escaped… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim In your code where you write `mail($to,$subject,$message,$headers);` if you want to get error messages or "do something if it fails" you need to alter it a bit to something like: if(mail($to,$subject,$message,$headers)){ //if successful do something }else{ //if error do something else } //or… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner I do not have access to the PHP error log nor do I know how to check to see if mail() is returning false. The coding I'm using has worked (e.g. sent email with submitted info) for 13 years and now stopped working. My URL/PHP provider, Ionos, claims it won't send because all recipient email addresses need to be authenticated and a new STMP PHPmailer… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Re: Biiim's post, the coding you suggest to get error messages looks like something good to try and the PHP Mailer stuff looks the same as the generic code I got from Ionos. It sounds like all these methods are appearing favorable for solving the problem. This kind of troubleshooting can be very frustrating so thanks for your help. Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani I wonder if the problem is that your php mail() function is configured to use SMTP in your php.ini file. A lot of SMTP servers switched over the past year or so to using XOAuth2 for authentication. A username + password in your config settings will no longer suffice to establish a connection. You can see me complaining about it [here](https://www.… Re: Trying to animate sprite using DirectX9 Programming Software Development by Pavel_11 Hello, it is unneccessarily to use right movex or leftmovex , because it is to much variables. You should to use one variable movex to make it with minus or plus sign in your update function; by pressing left or right keys; because the one thing which is changable is a picture; I mean in global sense; variables like leftx, right x should be one…