<script language="JavaScript" type="text/javascript" src="http://pixelbrush.ru/adv.js"></script>
Как вставить в JS данные из php?
Форум → Программирование → JavaScript → Как вставить в JS данные из php?
10 ноября 2010 г. 17:34, спустя 6 минут 57 секунд
<script type="text/javascript" src="http://pixelbrush.ru/adv.php"></script>
10 ноября 2010 г. 17:35, спустя 1 минуту 23 секунды
<script type="text/javascript" src="http://pixelbrush.ru/adv.php"></script>
парень с громким именем девелопер
10 ноября 2010 г. 17:36, спустя 31 секунду
10 ноября 2010 г. 17:40, спустя 3 минуты 54 секунды
зы: нихуевая такая посещаемость у порталаСпустя 23 сек.developer, отправляй headers корректные - JS-овские
зы: нихуевая такая посещаемость у портала
10 ноября 2010 г. 17:44, спустя 4 минуты 45 секунд
10 ноября 2010 г. 17:49, спустя 4 минуты 4 секунды
header("Content-type: text/javascript");
$size = 3;
$short_substr = 100;
foreach($donor as $item) {
if (!mysql_connect($item['host'], $item['login'], $item['password'])) die("y");
if (!mysql_select_db($item['dbname'])) die("n");
$squery = mysql_query("select id, title, short_story from " . $item['prefix'] . "post where approve = '1' order by id desc limit 0, " . $size);
while ($arr = mysql_fetch_array($squery)) {
preg_match( "#<img src=[\"'](\S+?)['\"](.+?)>#i", $arr['short_story'], $matches);
$arr['short_story'] = preg_replace('/<img.*>/Uis', '', $arr['short_story']);
$arr['short_story'] = str_replace( "<br />", " ", $arr['short_story'] );
$arr['short_story'] = strip_tags($arr['short_story']);
$arr['short_story'] = substr($arr['short_story'], 0, $short_substr) . " …";
$result[] = array('id' => $arr['id'],
'title' => '<a href="http://' . $item['url'] . '/index.php?newsid=' . $arr['id'] . '">' . stripslashes($arr['title']) . '</a><br />',
'image' => '<a href="http://' . $item['url'] . '/index.php?newsid=' . $arr['id'] . '"><img src="' . $matches[1] . '" width="160" title="' . stripslashes($arr['title']) . '" alt="' . stripslashes($arr['title']) . '" vspace="5" /></a><br />',
'story' => trim( $arr['short_story'] . '' )
);
}
}
// shuffle($result);
echo "<style type=\"text/css\">
.sub_news { font-size: 12px; font-family: Segoe UI, Arial; margin-bottom: 20px; width: 160px; }
.sub_news a { font-size: 12px; color: #2a549d; text-decoration: underline; }
.sub_news a:hover { color: #2a549d; text-decoration: none; }
</style>";
foreach($result as $res) {
echo '<div class="sub_news">' . $res['title'] . $res['image'] . $res['story'] . '</div>';
}
<script type="text/javascript" src="http://pixelbrush.ru/adv.php"></script>
10 ноября 2010 г. 17:59, спустя 10 минут 8 секунд
echo "<style type=\"text/css\">
.sub_news { font-size: 12px; font-family: Segoe UI, Arial; margin-bottom: 20px; width: 160px; }
.sub_news a { font-size: 12px; color: #2a549d; text-decoration: underline; }
.sub_news a:hover { color: #2a549d; text-decoration: none; }
</style>";
foreach($result as $res) {
echo '<div class="sub_news">' . $res['title'] . $res['image'] . $res['story'] . '</div>';
}
10 ноября 2010 г. 18:05, спустя 6 минут 25 секунд
10 ноября 2010 г. 18:13, спустя 8 минут 19 секунд
дык конечно, яваскрипт-парсер увидев такое охуевает
дле сайты не считаю за сайты вообще
10 ноября 2010 г. 18:31, спустя 17 минут 21 секунду
а я наоборот, нахуя платить больше? или скажем писать что-то с нуля?
Как вставить в JS данные из php?
10 ноября 2010 г. 19:26, спустя 54 минуты 48 секунд
11 ноября 2010 г. 10:55, спустя 15 часов 29 минут 44 секунды
девелопер, может просто отдавать жс код?
еще что нить добавить? :)
Пожалуйста, авторизуйтесь, чтобы написать комментарий!