PHP Code:
$names = preg_split('/[\r\n]+/', $names);
foreach($names AS $key => $val)
{
$attendees['member_name'] = $val;
$attendees['raid_id'] = $raididnow['raid_id'];
$DB_site->query(fetch_query_sql($attendees, 'dkp_raid_attendees '));
}
That is the code to place each name in the database seperate from each other (like you gave me the code for. Just when I go to edit/modify the raid, it is all together. Was wondering if there was a code to reverse it back into format of:
Name
Name2
Name3
Code:
1 Borr 60 Paladin
1 Fila 60 Warrior
1 Mightyal 59 Warrior
1 Soulss 60 Priest
1 Taparoo 60 Warlock
2 Crazy 60 Paladin Officer
2 Cronis 60 Mage
2 Ewoc 60 Warrior
2 Shortee 60 Rogue
2 Xirro 60 Druid
3 Agronom 60 Paladin
3 Benumbed 60 Priest Raid Leader
3 Souldat 60 Rogue
3 Warv 60 Paladin
That is the code I am copying & pasting into $pagetext form that I am runnin the top php code on to insert each name into the database. Right now, I am having to delete the spaces, numbers, class, leader, etc. and get it in:
Name
Name2
Name3
format. What I am asking is there a preg_strip to strip all from but names, then enter it in database. Sorry for not giving good details, its kinda hard for me to explain what it all this does =\