Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
Ranked #4K
~449 People Reached
Favorite Tags

3 Posted Topics

Member Avatar for Craig2231

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 …

Member Avatar for Craig2231
0
182
Member Avatar for m_wylie85

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 …

Member Avatar for m_wylie85
0
176
Member Avatar for nvidia123

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 …

Member Avatar for Joe544
0
91

The End.