Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hello i'm having this variable which is string.

$this->product_output_html = <<< HTML

Some HTML Code

  HTML;

I want int he class test to add a php for loop like this one

if ($admin->errors) { foreach ($admin->errors as $error) { echo ''.$error.''; } }

i have tried to add but is not working. i added '' after the class="test"> and before the of the test but still is not working. what i'm doing wrong?

thanks a lot

share|improve this question
2  
Code does not work within strings, including heredoc sections. If you meant something else, please show a complete example of what you were attempting. – mario Nov 3 '12 at 0:37

2 Answers

up vote 0 down vote accepted

try something like

$this->product_output_html = 'Start of html code as a string';
if ($admin->errors) {
  foreach ($admin->errors as $error) {
    $this->product_output_html .= '<br />'.$error;
  }
}
$this->product_output_html .= '<br />End of html code as a string';
echo $this->product_output_html;
share|improve this answer

replace

echo ".$error.";

with

echo $error;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.