How to change the width/height if I have the following code and using php:
<iframe src="http://player.vimeo.com/video/43598400"
webkitallowfullscreen=""
mozallowfullscreen=""
allowfullscreen=""
frameborder="0"
height="300"
width="500">
</iframe>
To:
<iframe src="http://player.vimeo.com/video/43598400"
webkitallowfullscreen=""
mozallowfullscreen=""
allowfullscreen=""
frameborder="0"
height="400"
width="680">
</iframe>
Usage is very limited, I want a simple replace solution.
something like this:
assuming you are certain that the original width and height will always be 500*300. if not you can try with preg_match()