TheFilmGod Posted June 25, 2008 Share Posted June 25, 2008 if ($error_display[1] != 0){ echo "$error_text[{$error_display[1]}]"; echo '</p>'; } This will not parse correctly. It isn't a mystery, the "$error_display[1] in $error_text[...] is creating the problem. Although I know what is causing the problem, I don't know how to fix it. Help? Thanks! TheFilmGod Link to comment https://forums.phpfreaks.com/topic/111770-parse-array-in-array-correctly/ Share on other sites More sharing options...
DarkWater Posted June 25, 2008 Share Posted June 25, 2008 Try it out of " ". echo $error_text[$error_display[1]]; Link to comment https://forums.phpfreaks.com/topic/111770-parse-array-in-array-correctly/#findComment-573806 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.