rogerl Posted November 20, 2007 Share Posted November 20, 2007 This has been driving me mad all day . . . read a string into a list but the list is only outputting the first letter of the string! Here's the script: $ct++ ; $list[$ct] = $subcat2 ; // string read from database up to 20 characters long echoing $subcats show full string $concat = $concat.", ".$list[$ct] ; At this time $concat shows that $list[$ct] is just the first letter. HelP! ??? Quote Link to comment Share on other sites More sharing options...
MadTechie Posted November 20, 2007 Share Posted November 20, 2007 <?php $ct++ ; $list= array();//<--add this first (at the start of the script) $list[$ct] = $subcat2; $concat = $concat.", ".$list[$ct]; ?> *corrected typo Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.