Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
Aetherdan Posted October 16, 2017 Posted October 16, 2017 I am running into a bit of a weird issue that I cant seem to solve. When using the pages application to create a database, with a field of type member. I can;t seem to output the string of id's correctly due to a weird occurrence where there is a line break between each ID. Usually when working with IPS it stored the arrays with the delimiter of comma, but in this particular case, it doesn't seem to be doing so. Is this a bug? Is my database incorrectly setup? Example database with id 2 and 1 stored in a field of type members. +---------+ | field_6 | +---------+ | 2 1 | +---------+
newbie LAC Posted October 16, 2017 Posted October 16, 2017 Before we used $ids = explode(',', $value); Now $ids = explode("\n", $value);
Recommended Posts
Archived
This topic is now archived and is closed to further replies.