Software, your way.
How To Get Good Custom Software
(Download)
(PDF)
burger menu icon
WillMaster

WillMasterBlog > PHP

FREE! Coding tips, tricks, and treasures.

Possibilities weekly ezine

Get the weekly email website developers read:

 

Your email address

name@example.com
YES! Send Possibilities every week!

PHP Configuration Can Restrict Your Forms

Here, I will show you how to use JavaScript for the decision.

PHP is configured on a server with certain limitations. The limitations help eliminate runaway scripts and excessive data upload.

Generally, PHP is configured so regular forms work as expected. But if you have extraordinary needs, you might run into the limitations. The maximum number of form fields, for example. Or the maximum amount of data a form can submit.

If you have special form needs or your uploads aren't arriving, the Form Max Values PHP script (further below) can be used to view the configured PHP limits. Here are 2 screenshots of Form Max Values output.

Although the above are from different servers, they are similar. The configurations are, as noted, sufficient for regular forms to work as expected.

If you need to change the PHP configurations for special form needs, many hosting accounts let you do it through the .htaccess file. See PHP Form Submission Limits for instructions.

Here is the PHP script. Name it FormMaxValues.php (or other *.php file name) and upload it to your server. No customizations are required.

<?php
/*
Display Form Maximum Values
Version 1.0
January 13, 2023
Will Bontrager Software LLC
https://www.willmaster.com/
*/
?><!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Maximum Values</title>
<style type="text/css">
html, body { font-size:110%; font-family:sans-serif; }
p, td { font-size:1rem; }
</style>
</head>
<body>
<div style="display:table; max-width:500px; margin:.5in auto;">
<table border="1" cellpadding="6" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td>Maximum form fields</td>
<td><?php echo( ini_get('max_input_vars') ) ?></td>
</tr>
<tr>
<td>Maximum number of upload files</td>
<td><?php echo( ini_get('max_file_uploads') ) ?></td>
</tr>
<tr>
<td>Maximum total size of all file uploads</td>
<td><?php echo( ini_get('upload_max_filesize') ) ?></td>
</tr>
<tr>
<td>Maximum total size form data (including file uploads)</td>
<td><?php echo( ini_get('post_max_size') ) ?></td>
</tr>
<tr>
<td>Memory limit for processing form submissions</td>
<td><?php echo( ini_get('memory_limit') ) ?></td>
</tr>
<tr>
<td>Maximum time to spend uploading form data (including files)</td>
<td><?php $i=ini_get('max_input_time'); if($i<0){$i=ini_get('max_execution_time');} echo($i) ?> seconds<?php if($i>60){echo(' (about '.intval($i/60).' min)');} ?></td>
</tr>
<tr>
<td>Maximum time to spend processing form data</td>
<td><?php echo( ini_get('max_execution_time') ) ?> seconds<?php if(ini_get('max_execution_time')>60){echo(' (about '.intval(ini_get('max_execution_time')/60).' min)');} ?></td>
</tr>
</table>
</div>
</body>
</head>

Type the URL of FormMaxValues.php into your browser's address bar and tap enter or return. The script will publish the values.

(This content first appeared in Possibilities newsletter.)

Will Bontrager

Was this blog post helpful to you?
(anonymous form)

Support This Website

Some of our support is from people like you who see the value of all that's offered for FREE at this website.

"Yes, let me contribute."

Amount (USD):

Tap to Choose
Contribution
Method


All information in WillMaster Blog articles is presented AS-IS.

We only suggest and recommend what we believe is of value. As remuneration for the time and research involved to provide quality links, we generally use affiliate links when we can. Whenever we link to something not our own, you should assume they are affiliate links or that we benefit in some way.

Recent Articles in the Library

Keeping Image Location Secret

The URL of an image embedded in a web page may be kept secret.

Easier Reading of JSON Data

For easier reading of JSON data, convert the JSON into an array.

Fixed Position Image

Position an image within a browser window that won't move even with page scroll.

Visually Centering Images

Sometimes an image that is technically centered doesn't look quite centered when viewed.

Cookie Directory Protection

Protecting subdirectories with a cookie can be an especially good method when access needs to be allowed from various internet connections.

Check SSL Certificate

An easy-to-use SSL checker to see when your secure certificate expires.

Strong Form Protection From Bots

A web page form that is invisible to spam bots.

How Can We Help You? balloons
How Can We Help You?
bullet Custom Programming
bullet Ready-Made Software
bullet Technical Support
bullet Possibilities Newsletter
bullet Website "How-To" Info
bullet Useful Information List

© 1998-2001 William and Mari Bontrager
© 2001-2011 Bontrager Connection, LLC
© 2011-2024 Will Bontrager Software LLC