+ 1
<? php echo $_SESSION['NAME'], $_SESSION['NAME2']; ?>
Outout is "sidrahabib" how I can out a single space between "sidra" and "habib"
2 Respuestas
+ 2
<? php echo $_SESSION['NAME']." ".$_SESSION['NAME2']; ?>
0
Thanks
Outout is "sidrahabib" how I can out a single space between "sidra" and "habib"