How do I get rid off dubble code???

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
GudB
 
 
Posts: 21
Joined: Thu Jan 04, 2018 5:42 pm

How do I get rid off dubble code???

Post by GudB »

Pleas see the exemple below.
It shows in my HTML page view.
the second session_start is not needed.
-----------------------------------------------------------------------------------------------------------
<?php
if (session_id() == "")
{
session_start();
}
require_once("wb.mysql.crud.php");
session_start();
if (!isset($_SESSION['username']))

----------------------------------------------------------

I dont know how it get there, but it should not.

please help.
User avatar
Pablo
 
Posts: 23612
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: How do I get rid off dubble code???

Post by Pablo »

It looks like you have multiple scripts on the same page.
It is difficult to say where it is coming from without knowing what you have done.
Post Reply