Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php // Loading demo class require 'DemoCRUD.php'; // Example with text from HTML Editor..

Decoded Output download

<?php
// Loading demo class
require 'DemoCRUD.php';

// Example with text from HTML Editor
echo '<h2><a href=".">DEMOS</a> &rsaquo; HTML EDITOR</h2>';

// Creating an instance
$demo = new DemoCRUD;

// Sample text
$sample_text = '<p style="color: #CBF;">Lorem ipsum "dolor" sit amet</p>';

// Escape double quotes
$sample_text = addslashes($sample_text);

// UPDATE books SET description = ? WHERE id = 1
$demo->updateWhere($sample_text, 1); ?>

Did this file decode correctly?

Original Code

<?php
// Loading demo class
require 'DemoCRUD.php';

// Example with text from HTML Editor
echo '<h2><a href=".">DEMOS</a> &rsaquo; HTML EDITOR</h2>';

// Creating an instance
$demo = new DemoCRUD;

// Sample text
$sample_text = '<p style="color: #CBF;">Lorem ipsum "dolor" sit amet</p>';

// Escape double quotes
$sample_text = addslashes($sample_text);

// UPDATE books SET description = ? WHERE id = 1
$demo->updateWhere($sample_text, 1);

Function Calls

None

Variables

None

Stats

MD5 01b1ce45367e13a8e78ba92f35af82ea
Eval Count 0
Decode Time 81 ms