Jump to content

Space in .TXT not Developing correctly


Azaz

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.