bundred Posted April 16, 2008 Share Posted April 16, 2008 how do i add spaces in between my code print "<a HREF=act5aupdate.php?AccomID=" .$row[0]. ">" .$row[0]. "</a>"; print $row[1]. $row[2]. $row[3]. $row[4]. $row[5]. $row[6]. $row[7]. "<br>"; i want it so in between $row[x]. $row[x]. i want a space to be outputted on screen to make it more readable. Link to comment https://forums.phpfreaks.com/topic/101349-solved-spaces-in-php/ Share on other sites More sharing options...
conker87 Posted April 16, 2008 Share Posted April 16, 2008 print $row[1]. " " . $row[2]. " " . $row[3]. " " . $row[4]. " " . $row[5]. " " . $row[6]. " " . $row[7]. "<br>"; Link to comment https://forums.phpfreaks.com/topic/101349-solved-spaces-in-php/#findComment-518368 Share on other sites More sharing options...
bundred Posted April 16, 2008 Author Share Posted April 16, 2008 thanks i tryed something like that lol must of done it wrong cheers. Rob Link to comment https://forums.phpfreaks.com/topic/101349-solved-spaces-in-php/#findComment-518372 Share on other sites More sharing options...
conker87 Posted April 16, 2008 Share Posted April 16, 2008 Just as long as you use quotes and the dot separator, you should be fine Link to comment https://forums.phpfreaks.com/topic/101349-solved-spaces-in-php/#findComment-518376 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.