The various HTML character codes in here have totally disoriented me, so I need some help. I'm trying to fit the following code into a PHP echo statement.
I've turned it into this, but think I've done somehing wrong as it's passing out errors all over.
Is there something that's missing, or that I forgot, or that I did wrong?
Code:
<form action ="/tally.php?sen_id=$row[sen_id]" method="post"> <input type="submit" name="submit" value="Vote" > </form>
PHP Code:
<?php echo
"<form action ="/tally.php?sen_id=$row[sen_id]" method="post">
<input type="submit" name="submit" value="Vote" />
</form>"
; ?>
Comment