• 07-03-2010, 05:51:44
    #1
    Merhaba Php bilgim yetersiz olduu için denedim ama başaramadım.


    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="330"><param name="movie" value="http://pics.smotri.com/scrubber_custom8.swf?file=v13612830495&bufferTime= 3&autoStart=false&str_lang=eng&xmlsource=http%3A%2 F%2Fpics.smotri.com%2Fcskins%2Fblue%2Fskin_color_l ightaqua.xml&xmldatasource=http%3A%2F%2Fpics.smotr i.com%2Fskin_ng.xml" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="bgcolor" value="#ffffff" /><embed src="http://pics.smotri.com/scrubber_custom8.swf?file=v13612830495&bufferTime= 3&autoStart=false&str_lang=eng&xmlsource=http%3A%2 F%2Fpics.smotri.com%2Fcskins%2Fblue%2Fskin_color_l ightaqua.xml&xmldatasource=http%3A%2F%2Fpics.smotr i.com%2Fskin_ng.xml" quality="high" allowscriptaccess="always" allowfullscreen="true" wmode="window" width="400" height="330" type="application/x-shockwave-flash"></embed></object><br /><strong><a href="http://smotri.com/video/view/?id=v13612830495" target="_blank">gavak 5</a></strong>



    şuradaki kodu bu hale çevirmek istiyorum Yani Sadece embed tagı içini alsın ve width + height değerlerini 479 395 olarak değiştirsin. bunun kodunu yazabilcek bi artakaş warmı. kodu ben text box a yazıcam o bana direk bu şklde text boxtan embed çıktısını verecek. oradan alıp siteye yapıştıracağım...



    <embed src="http://pics.smotri.com/scrubber_custom8.swf?file=v13612830495&bufferTime= 3&autoStart=false&str_lang=eng&xmlsource=http%3A%2 F%2Fpics.smotri.com%2Fcskins%2Fblue%2Fskin_color_l ightaqua.xml&xmldatasource=http%3A%2F%2Fpics.smotr i.com%2Fskin_ng.xml" quality="high" allowscriptaccess="always" allowfullscreen="true" wmode="window" width="479" height="395" type="application/x-shockwave-flash"></embed>
    Şimdiden teşekkür ettim.
  • 07-03-2010, 12:25:55
    #2
    Eposta Aktivasyonu Gerekmekte
    $embed = str_replace('wmode="window"  width="400" height="330"' , ' wmode="window"  width="479" height="395"' , $_POST['textbox_name']);
    
    echo $embed;
  • 07-03-2010, 12:29:28
    #3
    Eposta Aktivasyonu Gerekmekte
    Örnek ekledim
    $embed = str_replace('wmode="window"  width="400" height="330"' , ' wmode="window"  width="479" height="395"' , $_POST['textbox_name']);
    
    $video = 'v13612830495';
    
    //-- ÖRNEK
    $ss = '<embed src="http://pics.smotri.com/scrubber_custom8.swf?file='  .  $video .'&bufferTime= 3&autoStart=false&str_lang=eng&xmlsource=http%3A%2 F%2Fpics.smotri.com%2Fcskins%2Fblue%2Fskin_color_l ightaqua.xml&xmldatasource=http%3A%2F%2Fpics.smotr i.com%2Fskin_ng.xml" quality="high" allowscriptaccess="always" allowfullscreen="true" ' . $embed . ' type="application/x-shockwave-flash"></embed>';