Jump to content

concatenating a series of statements and storing them in a variable


php_begins

Recommended Posts

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
Share on other sites

$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
Share on other sites

<?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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.