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>
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>
Comment