Re: Optimizing working with big data Programming Software Development by whackksports Utilizing efficient tools and techniques, such as data filtering, storage solutions, and analytics platforms, is essential for optimizing work with big data. Automating processes, leveraging cloud computing, and ensuring scalability are also required. Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by Dani Then there’s me, whose expertise is mostly limited to technical SEO and PHP these days, I’m afraid. Ugh, the brain fog is real. Re: Key Tools and Tips for Efficient Web Development Programming Web Development by JackRyan248 > Hi Everyone, > > Web development can be both exciting and challenging, but having the right tools makes all the difference. If you're starting out or looking to improve your workflow, consider using popular frameworks like React or Vue for streamlined front-end development. > > On the back end, Node.js and Django are solid… Re: Cannot run exe from asp.net Programming Web Development by john_111 … can run a script on the webserver however. Say a PHP script to handle data transfers such as access a database… Has CSS Grid completely replaced Flexbox in your projects? Why or why not? Programming Web Development by KamalDeepPareek Please answer Hello Everyone - Newbie Here Community Center Say Hello! by Ramesh sharama Hi everyone, I'm Ramesh Sharma, the owner of Web Media Infotech. I’m excited to be part of this community! I work in the areas of web development, website design, and digital marketing, and I’m always keen to learn, share knowledge, and connect with like-minded professionals from around the world. Looking forward to great discussions and … Re: Hello Everyone - Newbie Here Community Center Say Hello! by Reverend Jim Welcome to Daniweb. Please take a moment to read the [Daniweb Posting Rules](https://www.daniweb.com/welcome/rules). Re: Key Tools and Tips for Efficient Web Development Programming Web Development by Himanshu011 Frontend development: * React * Vue.js Backend development: * Node.js * Django Re: How to connect to the Pinterest API using PHP? Programming Web Development by Dani … some other people have already beat you to writing a PHP-based OAuth flow for Pinterest: * https://github.com/dirkgroenen/…pinterest-api-php/blob/master/src/Pinterest/Auth/PinterestOAuth.php * https://accreditly.io/articles/use-php-to-post-to-the…how-to-implement-pinterest-api-to-access-user-boards-in-php Good luck! How to connect to the Pinterest API using PHP? Programming Web Development by FarrisFahad … returns an error. Here is my code so far ... <?php $clientId = "xxx"; // Replace with your App ID $clientSecret… Re: How to connect to the Pinterest API using PHP? Programming Web Development by Dani Oh, it looks as if the tutorial was for the old DaniWeb API that no longer exists. The [DaniWeb Connect API](https://www.daniweb.com/connect/developers) is also OAuth-based and has some of its own documentation. Re: Contact form does not working Programming Web Development by Biiim …in the last year, so when you have a PHP server with no emailing setup the emails often fail … headache if you are not that familiar with using PHP but you can get it to work without needing…inputs so the email sending can't be abused. <?php use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require … send checkbox to email using phpmailer Programming Web Development by ianhaneybs …gt; <div class="row mb-4"> <div class="col…quot;form-check-input" value="<?php echo !empty($postData['oneway'])?$postData['oneway']:''; ?>&…quot;form-check-input" value="<?php echo !empty($postData['return'])?$postData['return']:''; ?>… Re: send checkbox to email using phpmailer Programming Web Development by Dani …="#errors"`? Typically, the form action would be a PHP page that processes the form. What is the form trying…, we have these two POST fields being passed into this PHP page, and we're using them to set the values… Re: Contact form does not working Programming Web Development by Dani …. Or, alternatively, you can use PHP's [filter_var()](https://www.php.net/manual/en/function.filter-var.php) function to sanitize user input. Re: Contact form does not working Programming Web Development by Salem … real email address from the code. https://www.php.net/manual/en/function.mail.php Some things to try. 1. Headers is… Re: Contact form does not working Programming Web Development by Biiim … emails being sent out via the mail function - as the PHP server was not setup correctly and I was not an… Re: Multiple MySQL connections + transactions Programming Databases by Salem …/manual/en/mysqli.select-db.php I think the key word in all of this is &… Contact form does not working Programming Web Development by juan_35 … can't receive the message. Here is my code: <?php $email_to = 'name@example.com'; //the address to which the email… Re: Contact form does not working Programming Web Development by Dani … to their intended recipient. If you're not getting any PHP errors, it's possible that your outgoing mail server is… Multiple MySQL connections + transactions Programming Databases by Dani … tails as to whether this will work. From within my PHP script, can I write to a database using a MySQL… Re: Multiple MySQL connections + transactions Programming Databases by Dani A slightly related question: Is it okay to use PHP's `mysqli::select_db()` function to switch databases in the middle … Optimizing working with big data Programming Software Development by Dani … with large datasets? I am tagging this topic both with php (because that is my language of choice, and the one… Re: Contact form does not working Programming Web Development by gediminas.bukauskas.7 WEB security now rejects mail sent from any computer. Select some mail provider and send mail using it. Using certificated WEB serve is an another solution. Obtain legal certificate, register it on WEB server (IIS, Apache, NGINX, ...) Re: Contact form does not working Programming Web Development by gediminas.bukauskas.7 Follow this article: https://stackoverflow.com/questions/4595730/sending-email-from-localhost Re: Contact form does not working Programming Web Development by programmer_5 Reducing spam bots I strongly suggest to use SMTP, I would prefer to use PHPMailer which get more secure and handle professionally templates. Re: Contact form does not working Programming Web Development by gediminas.bukauskas.7 It was a time when anybody could to send a mail from Apache (or IIS) installed on local computer but internet spammers have used that feature for evil purposes. Now you can send emails from an officially registered server only. Even if you manage to send a letter somehow it will not reach the recipient or will be automatically will be placed into … Re: Contact form does not working Programming Web Development by webmaker Apart from doing some protection to your code, it will more than likely be your ISP not allowing the mail function to work. We have had to get an email acct with permissions allocated to each websites form by our providers. Re: Contact form does not working Programming Web Development by Dani > Emailing became more restrictive in the last year Are you referring to SPF, DKIM, and DMARC? Re: Multiple MySQL connections + transactions Programming Databases by Reverend Jim As far as I know you can connect to more than one database at a time but you require a separate connection object for each one. Since queries go through the connection object you can't run a query on more than one db at a time. It seems to me that transactions are also connection based so you would have to manually roll back a transaction on A if …