Jump to content

SELECT only returns 1 row


devknob

Recommended Posts

<?
$conn = mysql_connect('localhost', 'un', 'pw') or die ('Error connecting to mysql'); mysql_select_db('db');
$rs = mysql_query("SELECT post FROM cl");
$existing = mysql_fetch_assoc($rs);
print count($existing);
print_r($existing);	
?>

thats the whole file, the connection info is correct. There are hundreds of 100% complete records in that db, the post column is type Int and is filled with numbers. The above returns:

 

 

1

Array

(

    => 1913763485

)

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.