Azaz Posted July 31, 2010 Share Posted July 31, 2010 HI everyone, Here is my code: $myFile = "newuser.txt"; $fh = fopen($myFile, 'r'); $theData = fread($fh, 55); fclose($fh); $pices=explode(' ', $theData); And it opens up newuser.txt which is: "I love girls LOL 77" The "I Love GIRLS LOL" is the username of the user and the 77 is the id of the user! But when I echo it out like this: <a href=".?act=Profile&id='.$pices[1].'">'.$pices[0].'</a> It shows only the letter "i"? How do I make it show the full username even if it has spaces? Link to comment https://forums.phpfreaks.com/topic/209419-space-in-txt-not-developing-correctly/ Share on other sites More sharing options...
trq Posted July 31, 2010 Share Posted July 31, 2010 $myFile = "newuser.txt"; $fh = fopen($myFile, 'r'); $theData = fread($fh, 55); fclose($fh); $pices=explode(' ', $theData); $id = array_pop($pices); $username = implode(' ', $pices); Link to comment https://forums.phpfreaks.com/topic/209419-space-in-txt-not-developing-correctly/#findComment-1093479 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.