How do i insert html in between ” and ” of a php bit of code.
I want to insert html code where it says hello – but it won’t let me.
$this->setError($postName, ucfirst($postName)." hello.");
} else if(strlen($postVal) > intval($max)) {
I want to insert this code where it says hello.
<div class="alert alert-success">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Thank You!</strong> We hope to get back to you shortly.
</div>
1 Answer