Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
php.ini
- Page 1
Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day
Hardware and Software
Microsoft Windows
12 Hours Ago
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
3 Days Ago
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: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
1 Week Ago
by Reverend Jim
…; with appropriate adjustments being made according to the hidden desktop.
ini
file. What an abortion of a file system. And OneDrive…
Re: which language do i start leaning in 2025
Programming
Software Development
4 Weeks Ago
by Dani
… dynamic websites? You will need a backend language such as
PHP
and a database such as MySQL. I see you also…
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by john_111
… can run a script on the webserver however. Say a
PHP
script to handle data transfers such as access a database…
Hello Everyone - Newbie Here
Community Center
Say Hello!
2 Weeks Ago
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!
2 Weeks Ago
by Reverend Jim
Welcome to Daniweb. Please take a moment to read the [Daniweb Posting Rules](https://www.daniweb.com/welcome/rules).
Has CSS Grid completely replaced Flexbox in your projects? Why or why not?
Programming
Web Development
2 Weeks Ago
by KamalDeepPareek
Please answer
Re: Key Tools and Tips for Efficient Web Development
Programming
Web Development
1 Week Ago
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
2 Months Ago
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
2 Months Ago
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
2 Months Ago
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
2 Months Ago
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
2 Months Ago
by ianhaneybs
…quot; class="form-check-input" value="<?
php
echo !empty($postData['oneway'])?$postData['oneway']:''; ?>"> …quot; class="form-check-input" value="<?
php
echo !empty($postData['return'])?$postData['return']:''; ?>">…
Re: send checkbox to email using phpmailer
Programming
Web Development
2 Months Ago
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
2 Months Ago
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
2 Months Ago
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
2 Months Ago
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
1 Month Ago
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
2 Months Ago
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
2 Months Ago
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
1 Month Ago
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
1 Month Ago
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
1 Month Ago
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
2 Months Ago
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
2 Months Ago
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
2 Months Ago
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
2 Months Ago
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
2 Months Ago
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
2 Months Ago
by Dani
> Emailing became more restrictive in the last year Are you referring to SPF, DKIM, and DMARC?
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC