Can anyone help ? Im looking to find a MySQL query using regular expressions to allow me to remove any paragraph html tags within block quote tags. An example is :
<blockquote>
<p>TEXT</p>
</blockquote> Should be :
<blockquote>
TEXT
</blockquote> Thanks,