zorgeus
Постоялец
- Регистрация
- 5 Сен 2011
- Сообщения
- 128
- Реакции
- 19
Так они уже там прикручены, куда уж еще прикручивать.Ребят, кто-нибудь прикручивал к JokerBoard статьи, поделитесь у кого есть. Заранее спасибо.
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Так они уже там прикручены, куда уж еще прикручивать.Ребят, кто-нибудь прикручивал к JokerBoard статьи, поделитесь у кого есть. Заранее спасибо.
Используйте новости для статей. Если нужны и новости и статьи, то нужно сделать просто копию раздела новостей.Ребят, кто-нибудь прикручивал к JokerBoard статьи, поделитесь у кого есть. Заранее спасибо.
Покажите свой файл core/currency_converter.phpА с конвертацией ничего не менялось? Перестала работать, даже не понял когда.
<?Покажите свой файл core/currency_converter.php
<?
require_once("../admin/conf.php");
require_once("jshttprequest.php");
$JsHttpRequest=new JsHttpRequest("utf-8");
$host=parse_url(@$_SERVER['HTTP_REFERER']); if(@$host['host']!=@$_SERVER['HTTP_HOST'])die();
if(ctype_digit(@$_REQUEST['sum'])>0 && ($_REQUEST['type']=="rub" || $_REQUEST['type']=="eur" || $_REQUEST['type']=="uah")){
$url="http://www.google.ru/search?q=".$_REQUEST['sum']."+usd+in+".$_REQUEST['type'];
$cinit=curl_init();
curl_setopt($cinit,CURLOPT_URL,$url);
curl_setopt($cinit,CURLOPT_HEADER,0);
curl_setopt($cinit,CURLOPT_USERAGENT, $_SERVER["HTTP_USER_AGENT"]);
curl_setopt($cinit,CURLOPT_FOLLOWLOCATION,1);
curl_setopt($cinit,CURLOPT_RETURNTRANSFER,1);
$text=curl_exec($cinit);
curl_close($cinit);
$pos_begin=strpos($text,'<h2 class=r style="font-size:138%" ><b>');
$text=substr($text,$pos_begin);$pos_end=strpos($text,"</b></h2>");
$text=substr($text,0,$pos_end);$text=strip_tags($text);
$GLOBALS['_RESULT']="<span class=\"red b\">".$text."</span>";
}else $GLOBALS['_RESULT']=$lang[98];
?>
Оно! Большое пребольшое спасибо! Думал не усну сегодня, пока не сделаю ))Пробуйте это
Код:<? require_once("../admin/conf.php"); require_once("jshttprequest.php"); $JsHttpRequest=new JsHttpRequest("utf-8"); $host=parse_url(@$_SERVER['HTTP_REFERER']); if(@$host['host']!=@$_SERVER['HTTP_HOST'])die(); if(ctype_digit(@$_REQUEST['sum'])>0 && ($_REQUEST['type']=="rub" || $_REQUEST['type']=="eur" || $_REQUEST['type']=="uah")){ $url="http://www.google.ru/search?q=".$_REQUEST['sum']."+usd+in+".$_REQUEST['type']; $cinit=curl_init(); curl_setopt($cinit,CURLOPT_URL,$url); curl_setopt($cinit,CURLOPT_HEADER,0); curl_setopt($cinit,CURLOPT_USERAGENT, $_SERVER["HTTP_USER_AGENT"]); curl_setopt($cinit,CURLOPT_FOLLOWLOCATION,1); curl_setopt($cinit,CURLOPT_RETURNTRANSFER,1); $text=curl_exec($cinit); curl_close($cinit); $pos_begin=strpos($text,'<h2 class=r style="font-size:138%" ><b>'); $text=substr($text,$pos_begin);$pos_end=strpos($text,"</b></h2>"); $text=substr($text,0,$pos_end);$text=strip_tags($text); $GLOBALS['_RESULT']="<span class=\"red b\">".$text."</span>"; }else $GLOBALS['_RESULT']=$lang[98]; ?>
<select name="price2">
<option value="usd">USD</option>
<option value="eur">EUR</option>
<option value="rub">RUB</option>
</select>
if($_POST['price2']) $price2 = $_POST['price2'];
price2='".$price2."',
$insert=mysql_query("INSERT jb_board SET...
if($ads['price']!=0) echo "<br />".$lang[1008].": <span class=\"b orange\">".$ads['price']." ".$lang[1010]."</span> (<a class=\"green\" href=\"#\" onclick=\"currency_converter('".$ads['price']."','rub');return false;\">rub</a> <a class=\"green\" href=\"#\" onclick=\"currency_converter('".$ads['price']."','eur');return false;\">eur</a> <a class=\"green\" href=\"#\" onclick=\"currency_converter('".$ads['price']."','uah');return false;\">uah</a>)<div style=\"padding:3px;\" id=\"currency_converter\"></div>";
echo $ads['price']." ".$ads['price2'];