• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Error Special characters must be escaped: [ < ] php on Dreamweaver

Community Beginner ,
Nov 16, 2018 Nov 16, 2018

Copy link to clipboard

Copied

Hello,

I am trying to use php on dreamweaver, but I couldn't because all the time dreamweaver shows me that error.

I would really appreciate any help you can give me

error php dreamweaver.png

TOPICS
Error , Product issue

Views

9.6K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Nov 16, 2018 Nov 16, 2018

DW doesn't know that you have your server set to run php code in your .html pages, so it's trying to Lint the code as HTML.

If you don't have your server set to parse php code in .html pages, your code won't work until you save the file as .php.

Since <?php ?> isn't technically a valid HTML tag as far as the Linter knows, it's flagging it as wrong.

Save your page as .php and it goes away.

Votes

Translate

Translate
Community Expert ,
Nov 16, 2018 Nov 16, 2018

Copy link to clipboard

Copied

What character is under the pop up?

Could you post the entire code?

That error typically means you're missing something before the highlighted line.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Nov 16, 2018 Nov 16, 2018

Copy link to clipboard

Copied

I thought that, but I tried to included php coding on a new html document and the error continues

Code:

<!doctype html>

<html>

<head>

<meta charset="utf-8">

<title>ejemplo</title>

</head>

<body>

<?php ?>

</body>

</html>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 16, 2018 Nov 16, 2018

Copy link to clipboard

Copied

DW doesn't know that you have your server set to run php code in your .html pages, so it's trying to Lint the code as HTML.

If you don't have your server set to parse php code in .html pages, your code won't work until you save the file as .php.

Since <?php ?> isn't technically a valid HTML tag as far as the Linter knows, it's flagging it as wrong.

Save your page as .php and it goes away.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Nov 16, 2018 Nov 16, 2018

Copy link to clipboard

Copied

LATEST

oh ok, I will check that, thank you both for your help!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 16, 2018 Nov 16, 2018

Copy link to clipboard

Copied

I think that this is the culprit

Wappler, the only real Dreamweaver alternative.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Nov 16, 2018 Nov 16, 2018

Copy link to clipboard

Copied

Why? Can you explain me please?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 16, 2018 Nov 16, 2018

Copy link to clipboard

Copied

Good eye.

@juanf29622012,

If you save as .php it'll stop telling you that you have an error there. DW doesn't run the Linter in .php files (the reason for the highlighted line error).

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines