Script URL: Localhost
Version of script: 2.7.6
Hosting company: personal
URL of phpinfo.php: 5.7
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
sorry for my language, how can I change the minimum text to be inserted in the client head, I would like more than 10 characters to be stranded
é possibile inserire un controllo per la lunghezza minima nel campo clienet ? grazie
[SOLVED] check default character fields controllo campi default
Moderator: mkoch227
[SOLVED] check default character fields controllo campi default
Last edited by serpe76 on Fri Apr 06, 2018 7:27 pm, edited 1 time in total.
Re: check default character fields controllo campi default
Unfortunately I do not understand what you mean, can you please describe with examples?
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: check default character fields controllo campi default

Vorrei poter inserire un controllo per un minimo di caratteri da inserire nel campo nome
I would like to be able to insert a check for a minimum of characters to insert in the name field
Re: check default character fields controllo campi default
There is no built-in way of doing it, you will need to modify the source code to achieve this.
For example, in submit_ticket.php you would find code and just below that add something like
Similar for other fields; if you need help finding and modifying the correct code I recommend hiring a PHP developer for help.
For example, in submit_ticket.php you would find code
Code: Select all
$tmpvar['name'] = hesk_input( hesk_POST('name') ) or $hesk_error_buffer['name']=$hesklang['enter_your_name'];
Code: Select all
if (strlen($tmpvar['name']) < 6)
{
$hesk_error_buffer['name'] = 'Name must have at least 6 characters';
}
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: check default character fields controllo campi default
Grazie , risolto