View Single Post
ישן 13-08-06, 11:44   # 12
Elad-A
הוסטסניון
 
מיני פרופיל
תאריך הצטרפות: May 2006
הודעות: 1,987

Elad-A לא מחובר  

תודה רבה!! אני ינסה משהו אם אני לא יצליח אני יכתוב כאן.

עריכה:

יש לי בעיה בקוד הזה..
PHP קוד:
<?
class db

var 
$db

function 
connect($host$username$password$db_name){ 

    
$this->db mysql_connect($host,$username,$password
        or die(
"שגיאה"); 
     
    
mysql_select_db($db_name,$this->db
    or die(
"שגיאה"); 
     
    } 
function 
query($query)
    {
        
$res mysql_query("blabla");
    return 
$res;
    }
function 
fetch_rows()
    {
        return 
mysql_fetch_array($res);
    }
function 
num_rows()
    {
        return 
mysql_num_rows($res);
    }

}  
$db = new db
$db->connect("localhost","root","","ea2");
$db->query("SELECT * FROM ibf_thanks");
$rows $db->num_rows();
if(
$rows == 0)
{
echo 
"no";
}
else
{
$users=$db->fetch_rows();
echo 
$users ;
}
?>
ההתחברות עצמה עובדת אבל השאילתה לא בסדר.

Last edited by Elad-A; 13-08-06 at 12:04..
  Reply With Quote