DropDown data shuffling issue Programming Web Development by akkbkht …code I used. // Step 1: Set the start date and end date Set(startDate, DatePicker1.SelectedDate); Set(endDate, DatePicker2.SelectedDate);… // Step 2: Calculate the date range between startDate and endDate ClearCollect( RosterData, { AgentName: Label1… OpenAI GPT-4o vs Meta Llama 3 for Zero Shot Text Classifiation Programming Computer Science by usmanmalik57 … claimed to be the most capable openly available LLM to date. Concurrently, OpenAI announced [GPT-4o (omni)](https://community.openai.com… Re: How do I delete duplicate photos on my Mac for free? Programming Software Development by Camila_6 Just use duplicate file finder software that will help you to delete duplicate photos. You can also sort the images based on the name and date taken but it will take a lot of time. Re: DropDown data shuffling issue Programming Web Development by akkbkht Sorry. Forgot to attach the image in the main description. ![ITSDRosterError.jpg](https://static.daniweb.com/attachments/3/977be3ec0324088eab80fc13dd3b96fa.jpg) Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … to see: " . $_POST['ShowingHomes'] . "\r\n" . "Date(s)/Time(s) wants to see them: " . $_POST['ShowingTimes… How Build Html form ? Programming Web Development by Kirubel_2 …">Age</span> <input type="date" name="age" placeholder="Enter Your age… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim … Feb 2024 so the timeline is matching). Feb 2024 is date co-incident with Google and Yahoo requiring DMARC authentication for… Video is not the main content of the page Digital Media Digital Marketing Search Engine Strategies by Read a Book …;meta itemprop="uploadDate" content="<?php echo date('c', strtotime($upload_date)); ?>"> </div> <… Re: Improve HAVING BY performance Programming Databases by Biiim …(server sent events) so the react app keeps up to date without needing to wait for data over the network. My… Re: Improve HAVING BY performance Programming Databases by Dani …(server sent events) so the react app keeps up to date without needing to wait for data over the network. DaniWeb… Re: Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by rproffitt I wonder if the last other stable releases show this issue? "Stable release: 11.3.2 / 16 February 2024; 46 days ago" or the most recent release of MariaDB 10.11: MariaDB 10.11.7 Stable (GA) That is, many fixes don't get released for out of date versions. The new version is how many fixes are issued. 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: What is best method for link building nowadays? Digital Media Digital Marketing Search Engine Strategies by WilliamOG The best method to obtain links remains paying for them, if your website does not offer something exceptional that people would be interested in talking about on their own initiative. The most effective types of links are those that many cannot afford, namely placing their link on sites that are already authoritative. Such sites are gold mines. … Re: What is best method for link building nowadays? Digital Media Digital Marketing Search Engine Strategies by ani03 Article Writing, Blogging, Directory Submission, Social Bookmarking, PPT Submission etc. Re: What is best method for link building nowadays? Digital Media Digital Marketing Search Engine Strategies by KomalBhatt Yes. always focus on quality and not on quantity. creating a link is important but always follow the algorithm. Do organic SEO. Or else it will considered in black hat seo. You can focus on doing blog submissions, Question and answers for getting a backlink, always remember to check DA and PA of the website Re: What is best method for link building nowadays? Digital Media Digital Marketing Search Engine Strategies by webhostingworld One effective approach is to create valuable and informative content that others will want to link to, such as blog posts, infographics, or videos. By consistently producing top-notch content, you can attract organic backlinks. Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Ran into some new issues. Here goes. In order to download PHPMailer, must download Composer. In order to install Composer, need a Command Line PHP.exe file. I do not have one of these. I have been using PHP services from URL provider, 1 & 1/Ionos since 2011. They said in order to get a Command Line PHP.exe file, requires SSH to 'Connect to … Re: What is best method for link building nowadays? Digital Media Digital Marketing Search Engine Strategies by aishamushtaq You've nailed it! Effective link building involves high-quality content, guest blogging, broken link opportunities, social media promotion, and influencer collaboration. Quality beats quantity, and staying updated on search engine algorithm changes is essential. Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner 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 address associated … 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 Dani To clarify, I am suggesting: [...] //make your email body to send here $survey = "RadiantNewHorizonHomes.com General Inquiries" . "\r\n" . "\r\n" . "Name: " . $_POST['Name'] . "\r\n" . "E-mail Address: " . $_POST['Email'] . "\r\n&… 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… Re: What is best method for link building nowadays? Digital Media Digital Marketing Search Engine Strategies by AndyBeohar I would say 1. Create high-quality, valuable content that naturally attracts backlinks from authoritative websites in your industry. 2. Engage in strategic outreach, guest blogging, and participate in relevant communities can also help build quality links. Re: Video is not the main content of the page Digital Media Digital Marketing Search Engine Strategies by Read a Book BUMP. Anyone can help with this issue ? :/ Re: Video is not the main content of the page Digital Media Digital Marketing Search Engine Strategies by Dani I’ll take a look at this tomorrow. I’m currently in bed :) Re: Video is not the main content of the page Digital Media Digital Marketing Search Engine Strategies by Dani You have the itemtype set to a VideoObject but, as you point out, only sometimes is there actually an .mp4 file. The rest of the time, it's a static image such as a png, jpg, or jpeg. Google probably doesn't trust your meta tags since they are inaccurate half the time.