No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Could be an error with your HTML form, something being mispelled so it doesn't actually POST the data "Submit". Try adding in debug echos in at certain points to see how far the PHP gets before stopping - if it gets anywhere at all. For example: [CODE]<?php session_start(); include_once"includes/dbconnect.php"; echo('Checking …
Line 80 contains [CODE]if (i < 101)// run loop for 4 times[/CODE] Where it should be [CODE]if (i < 100)// run loop for 4 times[/CODE] Remember, the array index starts at 0 and finishes at 99 (if the array size is specified at 100), so array index 100 is out …
What test data are you inputting? If you are entering very large values then it is bound to fail as an integer may not be able to hold that much. Try entering small test data, e.g. 1,2,3 and see the result, if it works then you may just have to …
The End.
Joe544