Some people can see my calendar. Others cannot. Why might this be?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • MLH

    Some people can see my calendar. Others cannot. Why might this be?

    I had an MS Access app translated into a PHP - MySQL app.
    The purpose of porting the app was so the app could be run
    by websurfers right from their browsers.

    Knowing nothing of PHP, I am trying to determine why some
    users can see a calendar and others cannot. Below is a dump
    of a file named calendar.php. Its a 527 byte file. There's not
    enough information in the file to build a form as complex as
    the calendar that displays.

    I have 2 questions:
    1) Where is the rest of the information used to display the calendar
    coming from?
    2) Why can some people see my calendar and others cannot?


    <?
    $dst = $HTTP_GET_VARS["dst"];
    ?>
    <HTML>
    <HEAD>
    <TITLE>Credit-Fee Calendar</TITLE>
    <script language=jscrip t>
    function Done()
    {
    window.opener.< ?=$dst;?>.value = Calculator.Year + '-' +
    Calculator.Mont h + '-' + Calculator.Day;
    window.close();
    }
    </script>
    </HEAD>
    <BODY bgcolor=#D4D0C8 >
    <center>
    <OBJECT ALIGN=CENTER ID="Calculator "
    CLASSID="CLSID: 8E27C92B-1264-101C-8A2F-040224009C02">
    </OBJECT><br>
    <img src=images/donebtn.gif border=0 onClick="Done() ;"
    style="cursor:h and">
    </center>
    </BODY>
    </HTML>
  • Alvaro G Vicario

    #2
    Re: Some people can see my calendar. Others cannot. Why might this be?

    *** MLH wrote/escribió (Tue, 06 Jul 2004 04:12:21 -0400):[color=blue]
    > Knowing nothing of PHP, I am trying to determine why some
    > users can see a calendar and others cannot.[/color]

    It doesn't matter you don't know PHP, your code has nothing to do with PHP!
    I suggest you find a group about ActiveX controls, it's pretty likely you
    can get better support there.

    BTW, a reason why some users can't see your calendar is that ActiveX is
    only supported by Internet Explorer running under Windows platform.


    --
    --
    -- Álvaro G. Vicario - Burgos, Spain
    --

    Comment

    Working...