ok i know where this error came form...but i have no idea whats wrong...
here is the error:
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 21 bytes) in /home/kirk13/tennesseebraves-www/coaches_center/leader_editor.php on line 111
and here is line 111
108 //while sql string processor
109 $counter = 1;
110 while($num_cols > 0) {
111
112 $sql .= ", " . $item_name[$counter] . " " . $item_type
113 [$counter] . " NULL";
114
115 $num_cols = $num_cols--;
116 $counter = $counter++;
117
118 }//end while sql string processor
119
120 $sql .= ")";
121
122 //process
123 $result = mysql_query($sql);
is this caused by the while....and how can i fix it???
HELP!!!!!!!!
doss
ps...its not caused by the $sql (its limited to 100chars) or the item_arrays (all limited to 15 chars and there is between 1-5 of them)