php_begins Posted September 19, 2011 Share Posted September 19, 2011 I have a series of echo statements containing html and php elements. Is it possible to somehow store the following statements in one variable by concatenating and later print that variable. The variable should print out the statements as it is printing now. <? echo "USER banned:<b>"; echo '<a style="text-decoration: none;" href="'.$forumurl.'1acpanel/user.php?do=edit&u='.$banuserid.'"<fontcolor="#4822aa" face="verdana" size="2">'.$banusername.'</font></a><br>'; echo "</b>USER Banned By:<b>"; echo '<a style="text-decoration: none;" href="'.$forumurl.'1acpanel/user.php?do=edit&u='.$banneruserid.'"><font color="#4822aa" face="verdana" size="2">'.$bannerusername.'</font></a><br>'; echo "</b>Banned on:<b>".$bandate."</b><br>"; echo "Reason:<b>".$reason."</b><br><br>"; ?> Link to comment https://forums.phpfreaks.com/topic/247457-concatenating-a-series-of-statements-and-storing-them-in-a-variable/ Share on other sites More sharing options...
AyKay47 Posted September 19, 2011 Share Posted September 19, 2011 $var = ""; $var .= "USER banned:<b>"; $var .= '<a style="text-decoration: none;" href="'.$forumurl.'1acpanel/user.php?do=edit&u='.$banuserid.'"<fontcolor="#4822aa" face="verdana" size="2">'.$banusername.'</font></a><br>'; var .= "</b>USER Banned By:<b>"; etc... Link to comment https://forums.phpfreaks.com/topic/247457-concatenating-a-series-of-statements-and-storing-them-in-a-variable/#findComment-1270749 Share on other sites More sharing options...
xyph Posted September 19, 2011 Share Posted September 19, 2011 <?php $output = 'USER banned:<b>'. '<a style="text-decoration: none;" href="'.$forumurl. '1acpanel/user.php?do=edit&u='.$banuserid.'"<fontcolor="#4822aa" face="verdana" size="2">'. $banusername.'</font></a><br></b>USER Banned By:<b>'. '<a style="text-decoration: none;" href="'.$forumurl. '1acpanel/user.php?do=edit&u='.$banneruserid. '"><font color="#4822aa" face="verdana" size="2">'.$bannerusername. '</font></a><br></b>Banned on:<b>'.$bandate.'</b><br>Reason:<b>'. $reason.'</b><br><br>'; echo $output; ?> Link to comment https://forums.phpfreaks.com/topic/247457-concatenating-a-series-of-statements-and-storing-them-in-a-variable/#findComment-1270751 Share on other sites More sharing options...
php_begins Posted September 19, 2011 Author Share Posted September 19, 2011 thanks for the quick help.. Link to comment https://forums.phpfreaks.com/topic/247457-concatenating-a-series-of-statements-and-storing-them-in-a-variable/#findComment-1270805 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.