Form element has same name and id - problem?

Does it matter if a form element has the same name and id? Can anything bad result from this when parsing it, say, with a php program?

Example:

<input type="text" name="email" id="email">

No

I agree: no problem there.

Thanks. It was confusing me a bit.