The PHP Group PHP Logo

Related Topics:

Anonymous Posted on Aug 26, 2008

PHP Parse error

What is the meaning of PHP parse error?

How can i solve this Error?

1 Answer

Anonymous

Level 2:

An expert who has achieved level 2 by getting 100 points

MVP:

An expert that got 5 achievements.

Governor:

An expert whose answer got voted for 20 times.

Hot-Shot:

An expert who has answered 20 questions.

  • Expert 55 Answers
  • Posted on Aug 26, 2008
Anonymous
Expert
Level 2:

An expert who has achieved level 2 by getting 100 points

MVP:

An expert that got 5 achievements.

Governor:

An expert whose answer got voted for 20 times.

Hot-Shot:

An expert who has answered 20 questions.

Joined: Aug 20, 2008
Answers
55
Questions
0
Helped
22859
Points
130

Sir :
Do you have a problem in your own web page or what?

This mistake frequently occurs when a particular quote is
present in a string delimited by the same kind of quotes,
for example:

<?
echo 'apple API';
?>

In such situations the PHP interpreter does not know when he
starts and ends where the chain. The solution is to "escape"
quotes problem by being preceded by a backslash
(backslash):

<?
echo 'apple d \' api ';
?>
In the same way for the double quotes

<?
echo "said Jacques \" Hello! \ "";
?>

The PHP parser generally indicates the line where
the error occurred.
This error may also be due to the oblivion
of a semi-colon (;) at the end of the investigation
into the previous line ...

please dont forget rating this comment.
if this not helping u tell me so i can help u

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

426 views

Ask a Question

Usually answered in minutes!

Top The PHP Group Computers & Internet Experts

Rob Hill
Rob Hill

Level 3 Expert

1483 Answers

Nikole Brown
Nikole Brown

Level 2 Expert

124 Answers

Syed Bilal
Syed Bilal

Level 3 Expert

252 Answers

Are you a The PHP Group Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...