Another Question
Is there a way to bring the URL dynamically in the action form tag.
I tried this but the php is just plain text.
<?php
$newsletterURL = site_url()."/?na=s";
?>
<form method="post" action="<?php echo $newsletterURL;?>" onsubmit="return newsletter_check(this)">
End up in this
<form onsubmit="return newsletter_check(this)" action="<?php echo $newsletterURL;?>" method="post">