Good day,
When i using following query to pull out the data as following :-
Code:
SELECT url FROM mytable
the url data will show following :-
Code:
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/RXbnq5eW0vo&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/RXbnq5eW0vo&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object>
but i would like to replace the width and height in specific value say width=200 , height=300 for both occurance, how can i do that ?
meaning i would like to get the data after specific value replaced as show in following :-
Code:
<object width="200" height="300"><param name="movie" value="http://www.youtube.com/v/RXbnq5eW0vo&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/RXbnq5eW0vo&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="200" height="300"></embed></object>
many thanks for guidance !