Results 1 to 4 of 4

Thread: [RESOLVED] Parse error: syntax error, unexpected T_IF in /home/wante111/public_html/MyDB/pages/d

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Aug 2008
    Posts
    84

    Resolved [RESOLVED] Parse error: syntax error, unexpected T_IF in /home/wante111/public_html/MyDB/pages/d

    Parse error: syntax error, unexpected T_IF in /home/wante111/public_html/MyDB/pages/display.php on line 60

    PHP Code:
    <? php
    if ( (mysql_result($results, 0, 'private') == '1') ||  userActive() )
        echo '<div align="center"><a href="'<?php echo '?nav=download&file='.$fid?>"><img src="theme/download.png" align="middle" border=0></a>'
    ?>

  2. #2
    PowerPoster
    Join Date
    Sep 2003
    Location
    Edmonton, AB, Canada
    Posts
    2,629

    Re: Parse error: syntax error, unexpected T_IF in /home/wante111/public_html/MyDB/pag

    1. you need to tell the parser to open PHP with '<?php', not '<? php'. the space you have tells the parser that you're using short tags (which is deprecated), and then the "php" string begins a new statement. change to: <?php

    2. you need to terminate your echo by using a semicolon. example: echo 'hello';

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Aug 2008
    Posts
    84

    Re: Parse error: syntax error, unexpected T_IF in /home/wante111/public_html/MyDB/pag

    thnx for the help m8, m just editing a code this is 1st time i am working with php

    Code:
    <?php
    if ( (mysql_result($results, 0, 'private') == '1') ||  userActive() )
    	echo '<div align="center"><a href="'<?php echo '?nav=download&file='.$fid; ?>'"><img src="theme/download.png" align="middle" border=0></a>';
    ?>
    other error

    Parse error: syntax error, unexpected '?' in /home/wante111/public_html/MyDB/pages/display.php on line 61

  4. #4

    Thread Starter
    Lively Member
    Join Date
    Aug 2008
    Posts
    84

    Re: Parse error: syntax error, unexpected T_IF in /home/wante111/public_html/MyDB/pag

    sorted it ty,

Posting Permissions

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



Click Here to Expand Forum to Full Width