Results 1 to 4 of 4
  1. #1
    Join Date
    Oct 2004
    Posts
    12
    Tokens
    0

    Default Can Some One Help Me

    Hi im making my own news system and i keep getting this "error Parse error: parse error, unexpected $ in /home/kayos/public_html/asa/show_news.php on line 23"

    Heres The Code

    <?php
    include("db.php");//the database connection file
    $getnews = mysql_query("SELECT * FROM

    extreme_news ORDER BY id DESC");

    while($r=mysql_fetch_array($getnews)){
    extract($r);

    echo("<table width=447 height=75 border=0 align=center cellpadding=0 cellspacing=0 bordercolor=#666666 style=border-collapse :collapse>
    <tr>
    <td height=34><p><font size=2 face=Arial, Helvetica, sans-serif><strong><font size=2 face=Arial, Helvetica, sans-serif>&middot;
    <b>{title}</b></font></strong><br>
    {short-story}</font></p></td>
    </tr>
    <tr>
    <td height=18><div align=right><font size=2 face=Arial, Helvetica, sans-serif>Posted
    by {author} on {date}<br>
    </font></div></td>
    </tr>
    <tr>
    <td height=18><hr noshade></td>
    </tr>
    </table>);
    <?php

  2. #2
    Join Date
    Aug 2004
    Location
    UK
    Posts
    11,283
    Tokens
    2,031

    Latest Awards:

    Default

    try this

    PHP Code:
    <?php
    include("db.php");//the database connection file
    $getnews mysql_query("SELECT * FROM extreme_news ORDER BY id DESC");

    while(
    $r=mysql_fetch_array($getnews)){
    extract($r);

    echo(
    "<table width=447 height=75 border=0 align=center cellpadding=0 cellspacing=0 bordercolor=#666666 style=border-collapse :collapse>
    <tr>
    <td height=34><p><font size=2 face=Arial, Helvetica, sans-serif><strong><font size=2 face=Arial, Helvetica, sans-serif>&middot;
    <b>{title}</b></font></strong><br>
    {short-story}</font></p></td>
    </tr>
    <tr>
    <td height=18><div align=right><font size=2 face=Arial, Helvetica, sans-serif>Posted
    by {author} on {date}<br>
    </font></div></td>
    </tr>
    <tr>
    <td height=18><hr noshade></td>
    </tr>
    </table>"
    );
    ?>

  3. #3
    Join Date
    Oct 2004
    Posts
    12
    Tokens
    0

    Default

    Thnx It Works Now

  4. #4
    Join Date
    Nov 2004
    Location
    HabboWeb FM Offices
    Posts
    3,019
    Tokens
    0

    Latest Awards:

    Default

    Lmao


    That aint yours, as you can see its exactly the same to the one that someone else has made "/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •