TP-Docs
HTML5 Icon HTML5 Icon HTML5 Icon
TP on Social Media

Recent

Welcome to TinyPortal. Please login or sign up.

Members
Stats
  • Total Posts: 196,004
  • Total Topics: 21,330
  • Online today: 500
  • Online ever: 8,223 (February 19, 2025, 04:35:35 AM)
Users Online
  • Users: 0
  • Guests: 94
  • Total: 94

Making Script From PHP

Started by alhaudhie, November 21, 2007, 07:42:32 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

alhaudhie

when i call this php script

<?php

$ztoday 
getdate(time() + (3600 4)); 
//$ztoday = getdate(time());
$zyr $ztoday[year];
$zd=$ztoday[mday];
$zm=$ztoday[mon];
$zy=$zyr;



if ((
$zy>1582)||(($zy==1582)&&($zm>10))||(($zy==1582)&&($zm==10)&&($zd>14)))
    {
    
    
        
$zjd=(int)((1461*($zy 4800 + (int)( ($zm-14) /12) ))/4) + (int)((367*($zm-2-12*((int)(($zm-14)/12))))/12)-(int)((3*(int)(( ($zy+4900+(int)(($zm-14)/12))/100)))/4)+$zd-32075;
        }
 else
    {
        
$zjd 367*$zy-(int)((7*($zy+5001+(int)(($zm-9)/7)))/4)+(int)((275*$zm)/9)+$zd+1729777;
    }
        
$zl=$zjd-1948440+10632;
$zn=(int)(($zl-1)/10631);
$zl=$zl-10631*$zn+354;
$zj=((int)((10985-$zl)/5316))*((int)((50*$zl)/17719))+((int)($zl/5670))*((int)((43*$zl)/15238));
$zl=$zl-((int)((30-$zj)/15))*((int)((17719*$zj)/50))-((int)($zj/16))*((int)((15238*$zj)/43))+29;
$zm=(int)((24*$zl)/709);
$zd=$zl-(int)((709*$zm)/24);
$zy=30*$zn+$zj-30;

if(
$zm==1){ $bulan "Muharram"; }
if(
$zm==2){ $bulan "Safar"; }
if(
$zm==3){ $bulan "Rabiul Awal"; }
if(
$zm==4){ $bulan "Rabiul Akhir";}
if(
$zm==5){ $bulan "Jamadil Awal";}
if(
$zm==6){ $bulan "Jamadil Akhir";}
if(
$zm==7){ $bulan "Rejab";}
if(
$zm==8){ $bulan "Syabaan";}
if(
$zm==9){ $bulan "Ramadhan";}
if(
$zm==10){ $bulan "Syawal";}
if(
$zm==11){ $bulan "Zulkaedah";}
if(
$zm==12){ $bulan "Zulhijjah";}

if(
$ztoday[wday]==0){ $hari "Ahad"; }
if(
$ztoday[wday]==1){ $hari "Isnin"; }
if(
$ztoday[wday]==2){ $hari "Selasa"; }
if(
$ztoday[wday]==3){ $hari "Rabu"; }
if(
$ztoday[wday]==4){ $hari "Khamis";}
if(
$ztoday[wday]==5){ $hari "Jumaat";}
if(
$ztoday[wday]==6){ $hari "Sabtu";}

?>

document.write("<TABLE WIDTH=125 height="142" BORDER=0 align="center" CELLPADDING=0 CELLSPACING=0 background="http://www.myforum.net/hijri/images/bg_hijriah.gif" style="background-repeat:no-repeat; background-position:center;">
    <TR>
        <TD height="49" align="left" valign="bottom"><span class="bulan"><? echo "$bulan"; ?></span></TD>
    </TR>
    <TR>
        <TD height="64" align="center" valign="top"><span class="hari"><? echo "$zd"; ?></span><br />
          <span class="namahari"><? echo "$hari"; ?></span>
</TD>
    </TR>
    <TR>
        <TD height="29" align="center" valign="top"><span class="tahun"><? echo "$zy"; ?> HIJRAH</span></TD>
    </TR>
</TABLE>")
</div>



with : <script src="javascript.php" type="text/javascript" src="http://www.myforum.net/hijri/hijri.php"></script>

ist cant be done.. what must i change/add in that php script.. TQ

IchBin

You're calling a PHP script with a javascript statement. If you want to call that file into an article or block it must be a php type, and must be called using PHP.

include('path/to/hijri.php');

This website is proudly hosted on Crocweb Cloud Website Hosting.