Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … 4 domains can have email addresses associated with them (e.g. name@RadiantNewHorizonHomes.com, name@RTO-USA.net, etc.). If, on… or fake), the right side of the email address (e.g. the @url.com part) MUST be @RadiantNewHorizonHomes.com, @RTO-USA… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim I checked my code and I only found 2 differences, the first is the 2 `use` commands before the require: use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require 'includes/PHPMailer/src/Exception.php'; require 'includes/PHPMailer/src/PHPMailer.php'; require 'includes/PHPMailer/src/SMTP.php';… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …. After adding in the PHPMailer coding, page would crash (e.g. blank white screen, HTML file that would display the screen… doesn't even start at all, e.g. error in the 1st running PHP file). Adding the semi… Re: Online subission forms not sending emails of submitted info Programming Web Development by Chris_103 It seems like you're experiencing issues with PHP-based email functionality, where submissions are not triggering emails to be sent. Let's dive into the code snippet you provided and see if we can identify any potential issues or improvements. Re: Printing multiple integers EASY SOLUTION Programming Software Development by Bunker A straightforward solution to printing multiple integers is to use a loop. For example, in Python, you could use a "for" loop to iterate through a list of integers and print each one. This method is simple and effective. Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa …repaint(); } public void paintComponent(Graphics g) { super.paintComponent(g); // Move the balls for (int….getRadius()); } // Display the collisionCount g.setColor(Color.black); g.drawString("Collision Count: " … Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa …repaint(); } public void paintComponent(Graphics g) { super.paintComponent(g); g.setColor(Color.red); // move the…getRadius()); } // display the collisionCount g.setColor(Color.black); g.drawString("Collision Count: " … Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 …(ActionEvent e) { repaint(); } public void paintComponent( Graphics g ) { super.paintComponent( g ); g.setColor(Color.red); // move the balls for (int i… (int i = 0; i <b.length; i++){ g.fillOval(this.b[i].getX(), this.b[i].getY() , this… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa Yes, this is true. Overlapping ball spawns can do that causing a chain reaction. Something like that could be done. How you handle the spawning of the new ball is what I played with a bit before. You will see better collision detection changing to: g.fillOval(ball.getX(), ball.getY(), 1 * ball.getRadius(), 1 * ball.getRadius()); VB2010- why i get a different vertical size\color on RayCasting? Programming Software Development by cambalinho …(RayHeight * 4), RayCounts, 5) imgverticalline.ForeColor(RGB(VertColor.R, VertColor.G, VertColor.B)) imgverticalline.DrawLine(RayCounts, imgverticalline.Height / 2 - RayHeight \ 2… Slaying Unicorns: How Europe Sabotages Its Own Economic Future Community Center by Johannes C. …they felt entitled to and became used to them. E.g. there is not a single gold mine in France, … Not to mention the loss caused by tight restrictions – e.g., due to limited insights because of the [GDPR](https://gdpr…of AI’, also voted to give themselves dystopian rights – e.g., [mass-surveillance with real-time facial recognition](https://www.greens… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner ….com where the code block shown below is stored: e.g. in the root directory are directories: PHPMailer, RNHindex, etc.). IONOS… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim ….com where the code block shown below is stored: e.g. in the root directory are directories: PHPMailer, RNHindex, etc.). IONOS… Question Answering with YouTube Videos Using RAG in LangChain Programming Computer Science by usmanmalik57 …-Y", "https://www.youtube.com/watch?v=DNNMS7l6A-g", "https://www.youtube.com/watch?v=1rh-P2N0DR4… pass data to another asp page Programming Software Development by Fergus_1 … as the url and use it make further queries. Thanks G Re: Word Association Game Community Center Geeks' Lounge by Dani Seriously?! I need to go twice in a row b/c after almost two decades of this thread staying alive, no one's posted in 4 years? OK, fine ... snobby --> princess Re: What is the Best Marketing Platform For E-commerce Website? Digital Media Digital Marketing by AndyBeohar … Ads * Instagram Ads * Email Marketing Platforms (e.g., Mailchimp) * Amazon Advertising * Content Management Systems (e.g., WordPress, Shopify) * Social Media Management Tools… Re: How NOT to do business online Digital Media Digital Marketing by Dani … wants to convert it into utilizing a payment API (e.g. something that accepts credit cards). This takes a decent amount… Re: Improve HAVING BY performance Programming Databases by Dani … the PHP code *and* send it over the wire (e.g. including network latency). When I said I was able to… Re: Improve HAVING BY performance Programming Databases by Dani … rendered. We do that with DaniWeb Connect business cards e.g. https://www.daniweb.com/connect/users/view/1 because figuring… Re: Determine if email address is used by scammer Digital Media Digital Marketing Search Engine Strategies by Dani … GMail can follow up and take the appropriate action (e.g. shut down the GMail account). Re: What's the most unexpected hobby or interest you have outside of coding? Community Center Geeks' Lounge by toneewa … great technologies for people to have a full mapping. E.g., Celiac disease, if you don't have the genes HLA… Re: How Build video-player in html And css ? Programming by Kirubel_2 body{ /* background: url(../img/w11.png); */ background: url(../img/m.jpg); background-size: cover; background-repeat: no-repeat; margin: 0; padding: 0; height: 101vh; overflow-y: hidden; } .container button{ background: transparent; … Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Thank you so much for your reply and additions! It is certainly working as I wanted. I will read through the code you have added and ask you any questions I might have. I hope you don't mind. Regards Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by Dani I’ll mark this question solved :) Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by Dani … oh, sorry, missed the bit about you still needing clarifications. Feel feee to ask :) I’ll now unmark this topic as solved. /facepalm Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Hello, Thank you again so much! All your additions are clear, but it seems like whenever two balls collide, more than one ball is added to the arraylist and painted. Any way to have just one ball added to the panel for every collision? Have some kind of a toggle flag in paintcomponent? Regards Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Got it. Thank you so much! Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by vortex_1 In my opinion, implementing a feature in a bouncing balls simulation where a new ball is created when two balls collide can add an interesting and dynamic element to the simulation. This feature can introduce a sense of complexity and unpredictability, making the simulation more engaging and challenging for users. It could also provide an … Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Great reply, vortex! Agree with all your points.