Jump to content

Need some help! [Please help me]


alexszilagyi

Recommended Posts

Hello!,

 

Need some help with these files! (on Attachment)

 

 

It says: 

 

" Parse error: syntax error, unexpected $end in D:\path\www\logged_in.php on line 34 "

 

 

I don`t know whats the error, if anybody can help me please!

 

Thank you very much!

 

[attachment deleted by admin]

Link to comment
https://forums.phpfreaks.com/topic/66376-need-some-help-please-help-me/
Share on other sites

Here is the code:

 

 

<frameset rows="97,*" cols="*" framespacing="0" frameborder="no" border="0">

  <frameset rows="100,*" cols="*" framespacing="0" frameborder="NO" border="0">

    <frame src="banner.php" name="topFrame1" scrolling="NO" noresize >

    <frame src="UntitledFrame-2"></frameset>

   

  <frameset rows="25<?php if ($fetch->bar == "1"){ ?>,*<? } ?>" cols="*" framespacing="0" frameborder="NO" border="0">

    <?php if ($fetch->bar == "1"){ ?>

<frame src="mini.php" name="topFrame" scrolling="NO" noresize >

<?php } ?>

    <frameset rows="*" cols="200,*" framespacing="0" frameborder="NO" border="0">

      <frame src="menu.php" name="leftFrame" noresize>

      <frame src="main.php" name="middle">

    </frameset>

  </frameset>

</frameset>

 

 

I use Macromedia Dreamwaver but there isn`t 34 line in "logged_in.php"

 

Here is the screen-shot:

screen_shot.jpg

 

Thank you for help!

One of your opening tags is a short tag

<? instead of <?php

Do you have short tags enabled?

 

Try this:

.....
</frameset><frameset rows="25
<?php 
if ($fetch->bar == "1"){ 
print ',*';
} 
print '" cols="*" framespacing="0" frameborder="NO" border="0">';
if ($fetch->bar == "1"){ 
print '<frame src="mini.php" name="topFrame" scrolling="NO" noresize >';
}
?>
<frameset rows="*" cols="200,*" framespacing="0" frameborder="NO" border="0">
......

EDIT: Ohh, beatin to it :(

 

Change this line:

<frameset rows="25<?php if ($fetch->bar == "1"){ ?>,*<? } ?>" cols="*" framespacing="0" frameborder="NO" border="0">

to:

<frameset rows="25<?php if ($fetch->bar == "1"){ echo ',*'; } ?>" cols="*" framespacing="0" frameborder="NO" border="0">

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.