Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

in my website all pages contain Follow Us panal so inspite or writing it on all pages I have created a seperate modFollow.php file and included it in all pages, I don't know whether its a correct way or not but I am gettein this error message- my indexpage code -

<div class="follow">         
        <?php include 'modFollow.php'; ?>
    </div>

modFollow.php code-

<?php

//follow us module

echo "<h2 class='star'>Follow Us</h2>"
echo "<hr width='100%' color='WhiteSmoke' align='left'>"
echo "<a href='#'><img src='images/twitter.png' width = '35px' height = '32px' title =  'Twitter'/></a>"        
echo "<a href='#'><img src='images/facebook.png' width = '35px' height = '32px' title = 'FaceBook'/></a>"       
echo "<a href='#'><img src='images/rss.jpg' width = '35px' height = '32px' title = 'RSS'/></a>"         
echo "<a href='#'><img src='images/orkut.jpeg' width = '35px' height = '34px' title = 'Orkut'/></a>"  

?>

ERROR: Parse error: syntax error, unexpected T_ECHO, expecting ',' or ';' in C:\xampp\htdocs\shizin\modFollow.php on line 6

share|improve this question
1  
What's the error message? – deceze Aug 3 '10 at 6:43
I have updated.check it now – nectar Aug 3 '10 at 6:45
1  
bad code is bad. – Rook Aug 3 '10 at 6:46
Why are you echoing pure HTML in the first place? – deceze Aug 3 '10 at 6:48
as other says missing ";" at the end of each statment in follow.php file – KoolKabin Aug 3 '10 at 6:57

closed as too localized by cryptic ツ, Lusitanian, nickb, koopajah, ppeterka Mar 4 at 9:34

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

5 Answers

each of the echo lines needs to end with ;

share|improve this answer
1  
bro,you beat me!! :) – Srini Aug 3 '10 at 6:49
I was shocked to see so many responses at once.. hah – reefine Aug 3 '10 at 6:51

you forgot to write ; at the end of each echo statement

share|improve this answer
<div class="follow">         
        <?php 
        include ('modFollow.php'); 
        ?>
    </div>

and dont forget to give ; behind each echo statement

share|improve this answer
include is a language construct, you can use it without parenthesis without any problem. In fact, many developers prefer to do so. – Narf Nov 16 '12 at 12:08

In php every statment must be terminated by semi colon [;].

you forget to add this at end of the statment.

share|improve this answer
up vote -1 down vote accepted

oh....what a silly mistake I was forgetting ; in modFolloe.php

share|improve this answer
3  
please post as a comment;this is not an answer – Srini Aug 3 '10 at 6:48

Not the answer you're looking for? Browse other questions tagged or ask your own question.