Jump to content

<div> tag in php code


skter4938

Recommended Posts

Hello.

I have this code:
[code]<?php
if ($_SESSION['error_msg']) {
foreach ($_SESSION['error_msg'] as $val) {
echo "<div id='error'>$val</div><br />";
}
unset($_SESSION['error_msg']);
}
?>[/code]

And the [code]<div id='error'>$val</div><br />[/code] doesn't assign the div id to the $val.


Is there some other way I can assign the div id to $val?
Link to comment
https://forums.phpfreaks.com/topic/12496-tag-in-php-code/
Share on other sites

That code should work if you have an array in $_SESSION['error_msg']. What does it generate?
Put the following line, for debugging, before the foreach:
[code]<?php echo '<pre>' . print_r($_SESSION['error_msg'],true) . '</pre>'; ?>[/code]
and see if $_SESSION['error_msg'] contains what you think it contains.

Ken
Link to comment
https://forums.phpfreaks.com/topic/12496-tag-in-php-code/#findComment-47831
Share on other sites

In the echo part of the code. I assigned a div ID to $val. They do not do anything. They should make the text that $val outputs an orange color, since the css file says so.

and I have the form up on [a href=\"http://www.webtodesign.net/contact/\" target=\"_blank\"]http://www.webtodesign.net/contact/[/a]
Link to comment
https://forums.phpfreaks.com/topic/12496-tag-in-php-code/#findComment-47844
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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