nikhar021 Posted April 18, 2008 Share Posted April 18, 2008 i want that when a field in a form is entered then only the value of count is incremented...........can it happen??????? Link to comment https://forums.phpfreaks.com/topic/101736-solved-increment-a-count-on-filling-a-text-box/ Share on other sites More sharing options...
Zhadus Posted April 18, 2008 Share Posted April 18, 2008 When the field is submitted you want it to increment or when they type in values? Are you trying to do it dynamically? What is 'count' incrementing? Link to comment https://forums.phpfreaks.com/topic/101736-solved-increment-a-count-on-filling-a-text-box/#findComment-520536 Share on other sites More sharing options...
nikhar021 Posted April 18, 2008 Author Share Posted April 18, 2008 it is just incrementing the number of fields filled by the user and whenever it increments it should give the right value Link to comment https://forums.phpfreaks.com/topic/101736-solved-increment-a-count-on-filling-a-text-box/#findComment-520541 Share on other sites More sharing options...
Zhadus Posted April 18, 2008 Share Posted April 18, 2008 Are you looking to have it updated dynamically on the same screen or when they hit submit, have a counter that contains the amount of entered fields? Link to comment https://forums.phpfreaks.com/topic/101736-solved-increment-a-count-on-filling-a-text-box/#findComment-520549 Share on other sites More sharing options...
nikhar021 Posted April 18, 2008 Author Share Posted April 18, 2008 any way will do it doesnt matter Link to comment https://forums.phpfreaks.com/topic/101736-solved-increment-a-count-on-filling-a-text-box/#findComment-520560 Share on other sites More sharing options...
Zhadus Posted April 18, 2008 Share Posted April 18, 2008 On the page that you are posting the values to include this code for each fieldname: if isset($_POST['fieldname']) { $counter++; } Link to comment https://forums.phpfreaks.com/topic/101736-solved-increment-a-count-on-filling-a-text-box/#findComment-520569 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.