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

[code]Array
(
    [0] => Please enter in a valid email address.
)[/code]


that is what it gives me.

And the code is for a contact form. The form itself works, and the error messages are shown when somehting isn't filled in, but the <div> tags do not work :s
Link to comment
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
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.