Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
resize image from fileupload in php
- Page 1
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
12 Hours Ago
by Reverend Jim
First app is Macrium Reflect so I can take an
image
of the fresh install. Then I repartition to C/D, move my user folders (documents, pictures, etc.) to D. Then I take another
image
. After that I begin installing my base apps before imaging one more time.
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
4 Hours Ago
by Reverend Jim
… folders on D is so that I can restore an
image
to C if necessary without losing any user files. With…
Optimizing working with big data
Programming
Software Development
4 Weeks 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: Optimizing working with big data
Programming
Software Development
3 Weeks Ago
by Salem
My first thoughts would be 1. What is large? Are we in the TB range or mere handfuls of GB? 2. How often do you need to do this? Is it once a day, once a month, or just once.
Re: Optimizing working with big data
Programming
Software Development
3 Weeks Ago
by Dani
> What is large? Are we in the TB range or mere handfuls of GB? For the sake of argument, let's use my use case and say dozens of gigs and millions of rows. > How often do you need to do this? Is it once a day, once a month, or just once. For me, the most important is real-time read and write performance to tables with millions of …
Re: which language do i start leaning in 2025
Programming
Software Development
3 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
2 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…
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
3 Weeks Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Re: Custom Media Server
Hardware and Software
Linux and Unix
3 Weeks Ago
by Vince_6
I used Plex and a Mac for years to stream to my TV. When I switched to linux, PLex ran but couldn't find my media directories. I finally found a product called Emby. It has a server that runs and aps for many different divices. It even has one for my FireTV. Works great.
What’s Best Way to Clear File Contents Without Deleting the File in Linux
Hardware and Software
Linux and Unix
3 Weeks Ago
by adildixi
I recently needed to clear out log files without removing the files themselves (since some apps recreate them automatically). While looking for efficient methods, I came across a helpful write-up of DedicatedCore that explains different ways to shorten or empty a file in Linux without deleting it altogether. If anyone else is dealing with …
Re: What’s Best Way to Clear File Contents Without Deleting the File in Linux
Hardware and Software
Linux and Unix
3 Weeks Ago
by Reverend Jim
I'm confused. Since the log file is recreated automatically what is the problem with just deleting it? But if you want to shorten it you could always open it as write (but not append) and write a null string to it.
Re: What’s Best Way to Clear File Contents Without Deleting the File in Linux
Hardware and Software
Linux and Unix
3 Weeks Ago
by Salem
I guess most people just use https://linuxconfig.org/logrotate Set it and forget it. There's no need to resort to random per file hackery (or quackery).
Hello Everyone - Newbie Here
Community Center
Say Hello!
1 Week 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!
1 Week 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
1 Week Ago
by KamalDeepPareek
Please answer
Re: How to connect to the Pinterest API using PHP?
Programming
Web Development
1 Month 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
1 Month 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
1 Month 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
1 Month 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 …
Re: Json response in javascript
Programming
Web Development
2 Months Ago
by Mr.M
…, start: startDate, end: endDate}]} On my current code in my
php
file which gets the data from database is as follows… where I want to use this data to $.post(/myphpfile.
php
),{ type: "requestType", param: paramValue }, function (data, status){ //Using…
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 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 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
1 Month 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 &…
Re: Json response in javascript
Programming
Web Development
2 Months Ago
by Biiim
…. The incrementing keys in the array should be preserved from
PHP
. Edit: and the calendar should also have a destroy method…
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…
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