Welcome Guest, Not a member yet? Register   Sign In
Weird problem with... php
#1

[eluser]lopetzi[/eluser]
Hello,

I have a piece of code (controller):

Code:
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

class Test extends Controller {
    
    function index()
    {    
        function check_txn_id($txnid)
            {
                $i = $this->db->select('id')->from('table')->where('txnid', $txnid)->get();
                return $var = ($i->num_rows() > 0) ? true : false;
            }
            
        if (check_txn_id('inexistent_id') == true) echo 'The function should return true'; else echo 'The function should return false';

        echo 'This should be echoed anyway... but it\'s not.';
    }

}

I built a function (check_txn_id) to check if I have an ID in the database. If the ID exists I want it to return false, otherwise it should return true.

The weird thing is that it doesn't return anything, no matter if the ID exists or not.
It just shows a blank page and the script stops.
I don't know where the problem is... I'm not using the "if" correctly ?

Even if I do:

Code:
function check_txn_id($txnid)
            {
                return true
            }

It won't work... so I guess the function is not the problem... I don't know.

Please help me! Smile

Thanks!

PS: the database library is autoloaded


Messages In This Thread
Weird problem with... php - by El Forum - 09-26-2008, 04:39 PM
Weird problem with... php - by El Forum - 09-26-2008, 05:13 PM
Weird problem with... php - by El Forum - 09-26-2008, 06:27 PM



Theme © iAndrew 2016 - Forum software by © MyBB