JeraldPunx
JeraldPunx

Reputation: 319

Why the AJAX POST is not working?

can anyone tell me why my AJAX POST is not working... I added alert() and it is working... idk where is wrong here... this is my code...

<script language="JavaScript" type="text/javascript">
    function initialCalendar() {
        var hr = new XMLHttpRequest();
        var url = "calendar.php";
        var currentTime = new Date();
        var month = currentTime.getMonth() + 1;
        var year = currentTime.getFullYear();
        showmonth = month;
        showyear = year;
        var vars = "showmonth="+showmonth+"&showyear="+showyear;
        hr.open("POST", url, true);
        hr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
        hr.onreadystatechange = function() {
            if(hr.readyState == 4 && hr.status == 200) {
                var return_data = hr.responseText;
                document.getElementById("showCalendar").innerHTML = return_data;
            }
        }
        hr.send(vars);
        document.getElementById("showCalendar").innerHTML = "processing..";
        alert(vars);
    }

    function next_month(){
        var nextmonth = showmonth + 1;
        if(nextmonth > 12) {
            nextmonth = 1;
            showyear = showyear + 1;
        }
        showmonth = nextmonth;
        var hr = new XMLHttpRequest();
        var url = "calendar.php";
        var vars = "showmonth="+showmonth+"&showyear="+showyear;
        hr.open("POST", url, true);
        hr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
        hr.onreadystatechange = function() {
            if(hr.readyState == 4 && hr.status == 200) {
                var return_data = hr.responseText;
                document.getElementById("showCalendar").innertHTML = return_data;
            }
        }
        hr.send(vars);
        document.getElementById("showCalendar").innertHTML = "processing...";
        alert(vars);
    }

    function last_month(){
        var lastmonth = showmonth - 1;
        if(lastmonth < 1) {
            lastmonth = 1;
            showyear = showyear - 1;
        }
        showmonth = lastmonth;
        var hr = new XMLHttpRequest();
        var url = "calendar.php";
        var vars = "showmonth="+showmonth+"&showyear="+showyear;
        hr.open("POST", url, true);
        hr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
        hr.onreadystatechange = function() {
            if(hr.readyState == 4 && hr.status == 200) {
                var return_data = hr.responseText;
                document.getElementById("showCalendar").innertHTML = return_data;
            }
        }
        hr.send(vars);
        document.getElementById("showCalendar").innertHTML = "processing...";
        alert(vars);
    }
</script>

and the body is

<body onLoad="initialCalendar();">
<div id="showCalendar"> </div>
</body>

and the button I used to next and previous... this is from calendar.php

<?php
$showmonth = $_POST['showmonth'];
$showyear = $_POST['showyear'];
$showmonth = preg_replace('#[^0-9]#i', '', $showmonth);
$showyear = preg_replace('#[^0-9]#i', '', $showyear);

$day_count = cal_days_in_month(CAL_GREGORIAN, $showmonth, $showyear);
$pre_days = date('w', mktime(0,0,0, $showmonth, 1, $showyear));
$post_days = (6 - (date('w', mktime(0,0,0, $showmonth, $day_count, $showyear))));


echo '<div class="title_bar">';
echo '<div class="previous_month"><input name="myBtn" type="submit" value="Previous Month" onClick="javascript:last_month();"></div>';
echo '<div class="show_month">' . $showmonth . '/' . $showyear . '</div>';
echo '<div class="next_month"><input name="myBtn2" type="submit" value="Next Month" onClick="javascript:next_month();"></div>';
echo '</div>';

Upvotes: 0

Views: 339

Answers (1)

StackSlave
StackSlave

Reputation: 10617

Change innertHTML, to innerHTML in your next_month() and last_month() functions. I suggest using an editor like Komodo Edit 7.1. (I think that's the latest free version for Windows. Not sure about Mac.)

Upvotes: 1

Related Questions