Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When using the Codes on my Web this is no error but when i use localhost(xampp) i get mysql_result() expects parameter 2 to be long, string given in C:\xampplite\htdocs\Thesis\dean_logs.php on line 32

<?php

    if(isset($_GET['action']))
    {
        session_start();
    }

    include("config.inc.php");  
        $reports = "";
        $updates = "";  
    echo "<br>";
    echo "<b style='color:#FF0000'>REMINDERS : </b> <br> ";
    $db_logs = new Database;
    $db_logs->doConnect($dbHost, $dbName, $dbUser, $dbPassword);

    $college_id =   $_SESSION['college_id'];

    $query_rem                  = "SELECT * FROM department WHERE department_id in (SELECT department_id from department WHERE college_id = '$college_id')";
    $result_rem                 = mysql_query($query_rem);

    while($row_rem = mysql_fetch_array($result_rem))
    {

        $department_code            =   $row_rem['department_code'];
        $department_id              =   $row_rem['department_id'];

        $query                  = "SELECT date_format(datetime, '%Y-%m-%d') as date_times  FROM userlogs WHERE department_id= '$department_id' and logtype <> 'REPORT' order by datetime desc";
        $result                 = mysql_query($query) or die("Error in query");

        if(mysql_num_rows($result) > 0)
        {
            $datetime               = mysql_result($result,'date_times', 0);
            $datediff               = floor((time() - strtotime(mysql_result($result,'date_times', 0)))/(60*60*24));
            //echo floor((time() - strtotime(mysql_result($result,'date_times', 0)))/(60*60*24));
            if($datediff >= 7 ) $updates =  "($department_code) last update was $datetime <br>";            
        }

        $query                  = "SELECT date_format(datetime, '%Y-%m-%d') as date_times  FROM userlogs WHERE department_id= '$department_id' and logtype = 'REPORT' order by datetime desc";
        $result                 = mysql_query($query) or die("Error in query");

        if(mysql_num_rows($result) > 0)
        {
            $datetime               = mysql_result($result,'date_times', 0);
            $datediff               = floor((time() - strtotime(mysql_result($result,'date_times', 0)))/(60*60*24));

            if($datediff >= 7 ) $reports =  "($department_code) last Report issued to Dean was $datetime <br>";         
        }

        if($updates <> "" or $reports <> "")
        {
            echo "<b style='color:#FF0000'>";
            echo $reports;
            echo $updates;
            echo "</b>";
        }
    }

    echo "<br>";


    $query                  = "SELECT * FROM userlogs WHERE department_id in (SELECT department_id from department WHERE college_id = '$college_id')  order by datetime desc";
    $result                 = $db_logs->doQuery($query);

    while($row = mysql_fetch_array($result))
    {
        $deptid             =   $row['department_id'];
        $query_dept     = "SELECT * FROM department where department_id = '$deptid'";
        $result_dept  = mysql_query($query_dept);
        $department_code = mysql_result($result_dept,0,'department_code');
        echo "&nbsp;<strong>".$row['datetime']." - (".$department_code.") ".$row['logs']."</strong><br>";
        ?> <hr width="980" align="left" color="#CCCCCC" size="1px"> <?php 
    }

?>
share|improve this question
1  
mysql_result($result,'date_times', 0); is invalid. The PHP docs clearly state that the 2nd parameter must be an int, you're passing a string. One check with the documentation would tell you that. – nickb Jan 21 at 18:06
1  
Please don't use mysql_ functions in new scripts! Use PDO instead. – rekire Jan 21 at 18:06
StackOverflow is not the proper place for this question. We do not do code debugging. You need to do your own debugging and if you aren't sure why something is not working as expected, post the code with an explanation of what you were expecting it to do, and what is is actually doing including all error messages. See ask advice. – John Conde Jan 21 at 18:10

closed as too localized by Pekka 웃, talonmies, Lars Kotthoff, Justin Satyr, hakre Jan 21 at 19:20

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

Just open manual

string mysql_result ( resource $result , int $row [, mixed $field = 0 ] )

row

The row number from the result that's being retrieved. Row numbers start at 0.

It happens on your localhost because of difference in error_reporting PHP setting

share|improve this answer
$datetime = mysql_result($result,'date_times', 0);

is the problem line. The manual shows that the 2nd argument should be number that represents the row that you want. You've given it a string, and that means nothing to the function.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.