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

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

Community Beginner ,
Nov 16, 2018 Nov 16, 2018

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
10.6K
Translate
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.

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

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.

Translate
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

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>

Translate
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

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.

Translate
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
LATEST

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

Translate
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

I think that this is the culprit

Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!
Translate
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

Why? Can you explain me please?

Translate
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

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).

Translate
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