/home/bjcompany/domains/benjabhorn.com/public_html/BJconcrete/test.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
$iframe 
'<iframe width="560" height="315" src="https://www.youtube.com/embed/-RCvNpUw0Ro" frameborder="0" allowfullscreen></iframe>';

$src html_entity_decode($post['url']);
$height 450;
$width 610;

// add autoplay
$src $src . (strstr($src'?') ? '&''?') . '<iframe';


$iframe preg_replace('/src="(.*?)"/i''src="' $src .'"'$iframe);

$iframe preg_replace('/height="(.*?)"/i''height="' $height .'"'$iframe);
$iframe preg_replace('/width="(.*?)"/i''width="' $width .'"'$iframe);

echo 
$iframe;

?>