Hi:
I have a function called college_dropdown in PHP. The issue is the select/option statement list out all the colleges in US for example:
I have 6750 colleges to list out. When I load my page it takes about 2 minutes to load it.
Should I place it in a table called college and load the page that way. How do I do that in PHP or should I use an array in php?
Any suggestions
Thanks
Zishan
I have a function called college_dropdown in PHP. The issue is the select/option statement list out all the colleges in US for example:
Code:
<OPTION VALUE="A CUT ABOVE BEAUTY COLLEGE">A CUT ABOVE BEAUTY COLLEGE</OPTION>
<OPTION VALUE="A T STILL UNIVERSITY OF HEALTH SCIENCES">A T STILL UNIVERSITY OF HEALTH SCIENCES</OPTION>
<OPTION VALUE="A1 BUSINESS AND TECHNICAL COLLEGE">A1 BUSINESS AND TECHNICAL COLLEGE</OPTION>
Should I place it in a table called college and load the page that way. How do I do that in PHP or should I use an array in php?
Any suggestions
Thanks
Zishan