embedding php

This section is for posting questions which are not directly related to WYSIWYG Web Builder.
Examples of off topics: web server configuration, hosting, programming related questions, third party scripts.

Note that these questions will generally not be answered by the administrators of this forum.
Post Reply
dj7wilson
 
 
Posts: 1
Joined: Thu Jun 16, 2022 6:37 pm

embedding php

Post by dj7wilson »

I am trying to embed some php code but am getting an error "Parse error: syntax error, unexpected ':', expecting '[' in /home/customer/www/inspiredtecllc.biz/public_html/page1.php on line 26.
*** <!doctype html>
*** <html>
*** <head>
*** <meta charset="utf-8">
*** <title>Customers</title>
*** <meta name="generator" content="WYSIWYG Web Builder 17 - https://www.wysiwygwebbuilder.com">
*** <meta name="viewport" content="width=device-width, initial-scale=1.0">
*** <link href="ITForms.css" rel="stylesheet">
*** <link href="page1.css" rel="stylesheet">
*** </head>
*** <body <?php
*** --Table: customers

*** --DROP TABLE IF EXISTS customers;

*** CREATE TABLE customers (
*** CustomerID int AUTO_INCREMENT NOT NULL,
*** CompanyName varchar(100),
*** FirstName varchar(60),
*** LastName varchar(100),
*** BillingAddress varchar(510),
*** City varchar(100),
*** State varchar(40),
*** ZIPCode varchar(40),
*** CustEmail varchar(150),
*** CompanyWebsite longtext,
*** PhoneNumber varchar(60),
*** FaxNumber varchar(60),
*** EmployeeID int DEFAULT 0,
*** Notes longtext,
*** /* Keys */
*** PRIMARY KEY (CustomerID)
*** ) ENGINE = InnoDB
*** CHARACTER SET utf8 COLLATE utf8_general_ci;

*** CREATE INDEX CompanyName
*** ON customers
*** (CompanyName);

*** CREATE INDEX ContactLastName
*** ON customers
*** (LastName);

*** CREATE INDEX CustomersEmployeeID
*** ON customers
*** (EmployeeID);

*** CREATE INDEX PostalCode
*** ON customers
*** (ZIPCode);
*** ?>

*** <div id="FlexContainer1">
*** <div id="wb_Image1" style="display:inline-block;width:398px;z-index:0;">
*** <img src="images/1.png" id="Image1" alt="" width="398" height="100">
*** </div>
*** </div>
*** <div id="FlexContainer3">
*** <div id="wb_Image3" style="display:inline-block;width:634px;z-index:1;">
*** <img src="images/Menu.jpg" id="Image3" alt="" width="634" height="40">
*** </div>
*** </div>
*** <div id="FlexContainer2">
*** </div>

*** </body>
*** </html>

I'm sure I am doing something obvious, but I just can't catch it. Can you help?
User avatar
Pablo
 
Posts: 23243
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: embedding php

Post by Pablo »

Note that we cannot help you with custom code.

But it looks like you have added the code inside the body tag, this is not correct. This section is only for attributes.
Also, this is not PHP code, but SQL.
Post Reply