نوشتن جاوا اسکریپت در php

masoud_cpu

New Member
سلام . فکر کنم سوالم رو در تایتل پرسیدم .
اقا من میخوام کد کانتر وبگذر رو در e107 و در صفحه اول داشته باشم . اما نمیدونم باید چه جوری کد ها رو دستکاری کنم که بشه جاوا رو تو پی اچ پی نوشت ... ممنون میشم راهنمایی کنید ...:neutral:
 

moon_spell

Member
يکی از راه ها اينه که rss

يکی از راه ها اينه که rss کنی بد لينک بدو تو بلوک مثله اخبار bbc که rss رو بصورت اسکرول نشون ميده ! ببين اين به دردت ميخوره ! ؟

کد:
<?php
if ( !defined('BLOCK_FILE') ) {
    Header("Location: index.php");
    die();
}
$content  =  "<iframe src=\"includes/custom_files/bbc_rss.php\" width=\"100%\" height=\"425\" border=\"0\" scrolling=no frameborder=\"0\" name=\"loader\">";
$content  .= "</iframe>";
?>


به جای rss بی بی سی rss ساخت خودت رو قرار بده ! البته اين يک مثال هست !
 

S4DEGH

Well-Known Member
تو e107 كافيه فوتر قالب رو باز كني و كد رو درش قرار بدي ..
البته بگم اگر html باشه كه مشكلي نيست . در غير اين صورت وارد كردن كد هاي جاوا اسكريت تو فايل هاي php بستگي داره مثلا يك مدل اينطوري هست :
مثلا ما يه اسكريپت داريم به اين صورت :
کد:
<script language="Javascript" type="text/javascript">
<!--
function img_popup(image_url, image_width, image_height, popup_rand)
{
screenwidth = false;
screenwidth = screen.Width;
if ( !screenwidth )
{
screenwidth = window.outerWidth;
}
screenheight = false;
screenheight = screen.Height;
if ( !screenheight )
{
screenheight = window.outerHeight;
}
if ( screenwidth < image_width || screenheight < image_height || image_width == null || image_height == null )
{
window.open(image_url, 'limit_image_mod_popup_img_' + popup_rand, 'resizable=yes,top=0,left=0,screenX=0,screenY=0,scrollbars=yes', false);
}
else
{
window.open(image_url, 'limit_image_mod_popup_img_' + popup_rand, 'resizable=yes,top=0,left=0,screenX=0,screenY=0,height=' + image_height + ',width=' + image_width, false);
}
}
//-->
</script>

خب وقتي ميخوايم داخل فايل php بزايم به اين تبديلش ميكنيم :

کد:
echo "<script language=\"Javascript\" type=\"text/javascript\">\n";
echo "<!--\n";
echo "function img_popup(image_url, image_width, image_height, popup_rand)\n";
echo "{\n";
echo "screenwidth = false;\n";
echo "screenwidth = screen.Width;\n";
echo "if ( !screenwidth )\n";
echo "{\n";
echo "screenwidth = window.outerWidth;\n";
echo "}\n";
echo "screenheight = false;\n";
echo "screenheight = screen.Height;\n";
echo "if ( !screenheight )\n";
echo "{\n";
echo "screenheight = window.outerHeight;\n";
echo "}\n";
echo "if ( screenwidth < image_width || screenheight < image_height || image_width == null || image_height == null )\n";
echo "{\n";
echo "window.open(image_url, \'limit_image_mod_popup_img_\' + popup_rand, \'resizable=yes,top=0,left=0,screenX=0,screenY=0,scrollbars=yes\', false);\n";
echo "}\n";
echo "else\n";
echo "{\n";
echo "window.open(image_url, \'limit_image_mod_popup_img_\' + popup_rand, \'resizable=yes,top=0,left=0,screenX=0,screenY=0,height=\' + image_height + \',width=\' + image_width, false);\n";
echo "}\n";
echo "}\n";
echo "//-->\n";
echo "</script>\n";


كه مثلا وب گذر اينطوري ميشه :
کد:
echo "<!-- Begin WebGozar.com Counter code -->\n";
echo "<script language=\"javascript\" src=\"http://webgozar.com/c.aspx?Code=373570&t=counter\"></script>\n";
echo "<!-- End WebGozar.com Counter code -->\n";
 

جدیدترین ارسال ها

بالا