Quote:
Originally Posted by YamiKaitou
PHP Code:
new nick[64]; SQL_ReadResult(Query,SQL_FieldToNum(Query,"nick"),nick,63);
|
IT doesnt work. I just keep getting int-values from the db, when the values in the db are STR. What im looking for is this.
PHP Code:
$array = mysql_query("SELECT * FROM login");
while($row = mysql_fetch_array($array))
{
echo $row[nick];
}
This is how it would have looked in php.