On Mon, Mar 26, 2001 at 09:24:38PM -0800, Chris Hall wrote:

> Parse error: parse error, expecting `','' or `';'' in
> f:\inetpub\wwwroot\forums\index.php on line 38
> line 38 would be:
> echo "Name: "$row["user_id"]."<br>\n";
              ^^ missing a '.' there.

either this way
    
    echo "Name: " . $row["user_id"] . "<br>\n";

or 
   echo "Name: $row['user_id']<br>\n";


-fkr
-- 
gpg-fingerprint: 076E 1E87 3E05 1C7F B1A0  8A48 0D31 9BD3 D9AC 74D0 
  |http://www.hazardous.org/ | whois -h whois.ripe.de FKR-RIPE  |
  |all your base are belong to us  |  shame on me  | fkr@IRCnet | 

PGP signature

Reply via email to