E
evachick156
Guest
I have a variable which is
$id = "54;55";
But when i go
echo $id;
,...It displays what i want which is 54;55
But when i put this...
echo "Hello " . $id;
...It displays Hello 55;
Why?
$id = "54;55";
But when i go
echo $id;
,...It displays what i want which is 54;55
But when i put this...
echo "Hello " . $id;
...It displays Hello 55;
Why?