Jump to content
  • 0

Изменение свойства width в тегах через PHP


people2010
 Share

Question

Хочу изменять свойство width в теге <object> в зависимости от класса

таким образом не работает. Как правильно нужно?

width="<?php echo '<div class="video_width"></div>'; ?>"

Вот код, подскажите, как подставить классы туда в свойства width и height.

<div align="center"><object width="90%" height="60%"><param name="movie" value="http://www.youtube.com/v/yYRdCu_b1Aw?fs=1&hl=ru_RU"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/yYRdCu_b1Aw?fs=1&hl=ru_RU" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="<?php $video_width = '<div class="video_width"></div>';
echo $video_width; ?>" height="50%"></embed></object> </div>

Мне нужно чтоб значение от класса video_width подставилось в свойство width, а значение от класса video_height в свойство height. Как это сделать?

Edited by people2010
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Ага, и что должно получиться в итоге?

width="<div class="video_width"></div>"

Зачем так делать? И при чём тут вообще php, если он используется только для вывода текста, даже без условия?

О каких классах речь? Классах php или css? Переозвучьте вопрос с употреблением общепринятой терминологии. video_width - это не класс, а переменная.

<?php $wi='400';?>
<object width="<?php echo $wi;?>">

Если уж на то пошло

Ну или так

<?php
echo '<object width="'.$wi.'">';
?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy