I posted this before and got an answer, but then it got buried, so I am reviving it here and I will provide more information.
The application that I wrote runs, but comes up with a warning after the page loads and it says that there ia a stack overflow at line 508. I gave a snippet of that line, but the people that responded said that they needed more code. Well, this application is over 2000 lines long, so I will shorten it here so I can show you what is happening:
- Connects to database/opens record to display.
2.Does a simple IF/THEN statement for an IP check.
- Then 12 IF/THEN statements for assigning various variables for various questions the applicant provided.
- Then 8 IF/THEN statements for assigning various variables for modem speed answer.
- Then 9 IF/THEN statements for assigning various variables for application status.
- Then 2 IF/THEN statements for assignment of the sex variable (m/f)
- Then 8 IF/THEN statements for Assignment of Race.
- Then 5 IF/THEN statements for assignment of age category.
- Then 10 IF/THEN statements for the assignment of a profession category (1st Choice).
- Then 10 IF/THEN statements for the assignment of a profession category (2cd Choice).
- Then 16 Queries that match the applicants geographical area in each zone.
- Then 16 mysql_num_rows(result) to count the number of matches in each zone.
- A Print Statement that prints out the entire profile using the variables that were assigned above.
- Then the code that allows me to change the information using a simple form.
I hope this helps someone to help me get over this stack overflow problem I am having. I need to get it straightened out because it is bugging me to death now and we need this operational ASAP.
By the way, the stack over that is occuring on line 508 is within Part 10 above- Second Profession Choice in IF/THEN assignement #3, if that helps at all to solve this problem.