Interesting. I changed my code to this:
//explode the skills located in database
$string = trim($row_skills['Section_Value']);
$string = str_replace("\r\n\t", '', $string);
$string = str_replace("\r", '', $string);
$string = str_replace("\n", '', $string);
$string = str_replace("\t", '', $string);
$skills_temp = explode(' ', $string);
print_r($skills_temp);
My array comes out like so:
Array ( [0] => Over [1] => 20 [2] => years [3] => of [4] => IT [5] => experience [6] => and [7] => more [8] => than [9] => 5 [10] => years [11] => as [12] => UNIX [13] => Administrator.Have [14] => Active [15] => Secret [16] => security [17] => clearance.TECHNICAL [18] => SKILLSOperating [19] => Systems: [20] => Unix, [21] => Sun [22] => Solaris [23] => 2.6, [24] => 7, [25] => 8; [26] => VMS; [27] => HP-UX; [28] => BSD, [29] => Mac [30] => OS [31] => 6, [32] => 7, [33] => 8, [34] => 9 [35] => & [36] => X; [37] => WinNT; [38] => Win2KNetwork [39] => & [40] => Protocols [41] => [42] => : [43] => [44] => Ethernet, [45] => TCP/IP, [46] => DHCP, [47] => FTP, [48] => HTTP, [49] => LDAP, [50] => DNS, [51] => ASIP, [52] => POP3, [53] => SMTP, [54] => SNMP, [55] => NAT, [56] => DECnet, [57] => NFS, [58] => X-Windows, [59] => firewallsHardware [60] => : [61] => [62] => [63] => SPARC, [64] => VAX, [65] => PC [66] => & [67] => Macintosh [68] => hardware; [69] => Ethernet [70] => hubs, [71] => routers [72] => and [73] => switches ) Array ( [0] => unix [1] => html [2] => network )