• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[CODE] tags bugged?

Status
Not open for further replies.
◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜
Developer
Joined
May 29, 2007
Messages
2,167
Reaction score
899
Bug confirmed they are also invisible for me on other topics.
 
Last edited:
Joined
Nov 14, 2001
Messages
29,450
Reaction score
21,670
This is an odd one, hmm.. I have an idea what it might be. Will report back shortly. In the mean time here is my live test tag.

Code:
 <script type="text/javascript"> <!-- alert("Hello world!"); //--> </script>

Code:
 <script type="text/javascript"> <!-- alert("Hello world!"); //--> </script>



update - found the problem ,but it also disables HTML5 Youtube , working on a resolve.



Code:
<script type="text/javascript"> <!-- alert("Hello world!"); //--> </script>

Test 3







Code:
<script type="text/javascript"> <!-- alert("Hello world!"); //--> </script>



Code:
<script type="text/javascript"> <!-- alert("Hello world!"); //--> </script>



Code:
<script type="text/javascript"> <!-- alert("Hello world!"); //--> </script>



Code:
<?php
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "myDB";


// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
} 


$sql = "SELECT id, firstname, lastname FROM MyGuests";
$result = $conn->query($sql);


if ($result->num_rows > 0) {
    // output data of each row
    while($row = $result->fetch_assoc()) {
        echo "id: " . $row["id"]. " - Name: " . $row["firstname"]. " " . $row["lastname"]. "<br>";
    }
} else {
    echo "0 results";
}
$conn->close();
?>

Testing security rules not to enable any triggers.



Should be fixed. :)
 
Status
Not open for further replies.
Back
Top