Microweber is a content management system of new generation that allows you to make your website by drag and drop.
You can easily manipulate the content and the layout of your pages without the need to write code.
<?php | |
class Foo { | |
public function bar() { | |
echo 'foo'; | |
} | |
} | |
class Bar { | |
private $foo; |
Microweber is a content management system of new generation that allows you to make your website by drag and drop.
You can easily manipulate the content and the layout of your pages without the need to write code.
<?php | |
//original article is here http://css-tricks.com/snippets/php/sanitize-database-inputs/ | |
function cleanInput($input) { | |
$search = array( | |
'@<script[^>]*?>.*?</script>@si', // Strip out javascript | |
'@<[\/\!]*?[^<>]*?>@si', // Strip out HTML tags |