Jump to content

Hello there , new on mySQL and I am having errors already...


jimmyslam

Recommended Posts


Ok i am having this error.

Fatal error: Call to a member function on a non-object in /datos/home/d177397/public_html/public_html/html/admin/view.php on line 14

And my code is

Vars!
[code]<?

define ( "DB_SERVER", "x.x.x.x" );
define ( "DB", "d177397_news" );
define ( "DB_LOGIN", "user..." );
define ( "DB_PASSWORD", "pass..." );

?>[/code]



Connect!
[code]<?

$db = mysql_connect(DB_SERVER, DB_LOGIN, DB_PASSWORD) or die("Could not connect: ".mysql_error());
mysql_select_db(DB) or die("Could not select database: ".mysql_error());

?>[/code]


[code]<?
include_once ("vars.php");
include_once ("connect.php");


//ver infos de las tablas
//$sql->QueryRow("select * from news where 'ID'=0");
$sql->QueryRow("select * from news where 'ID'=1");


$row = $sql->data;

echo ("$row[ID]");
echo ("$row[date]");
echo ("$row[description]");
echo ("$row[links]");

mysql_close();
?>[/code]

What is going on?

I think the queryrow is wrongly used. I dont see what is the problem really...

Anyone help? Thanks
Link to comment
Share on other sites

Which line is line 14?  This one:  "$row = $sql->data;"?

In this line -- [b]$sql->QueryRow("select * from news where 'ID'=1");[/b] -- I think ID shouldn't be in single quotes.  You don't really need anything around it, but you can use backticks if you really want to quote it.
Link to comment
Share on other sites

I agree w/ kingarthur; there's probably an error with the object creation.

But the 'ID'=1 was comparing a [i]string[/i] to a number, not a column to a number.  It would always evaluate to FALSE and was, no doubt, not what you had intended.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.