2009-07-16, 10:52 AM
Hi,
nice MyCode but embed is not allowed within XHTML and will cause in an invalid HTML Code.
Regex:
Replacement:
This will produce a valid XHTML syntax, works on all browsers and users can't destry page layout by using a huge dimension (max dimension is 999x999).
nice MyCode but embed is not allowed within XHTML and will cause in an invalid HTML Code.
Regex:
\[flash=([0-9]{1,3})x([0-9]{1,3})\](.*)\[/flash\]
Replacement:
<object type="application/x-shockwave-flash" data="$3" width="$1" height="$2"><param name="movie" value="$3" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="wmode" value="transparent" /></object>
This will produce a valid XHTML syntax, works on all browsers and users can't destry page layout by using a huge dimension (max dimension is 999x999).