<form method='post' enctype='multipart/form-data' action='<?php echo $_SERVER['PHP_SELF']; ?>'>
<input type='text' name='ix' value=''>
<input type='radio' name='do' value='delete'>
<input type='radio' name='do' value='private'>
<input type ...
<meta http-equiv='refresh'
content='5; url=http://qindex.info'>
<!DOCTYPE html><html><head>
<title></title>
<meta name='description' content=''>
<meta name='viewport'
content='width=device-width,initial-scale=1.0'>
<link rel='stylesheet' href=''>
<style></style>
<script src=''></script>
<script></script>
</head><bod ...
var j = {
v: 0
,c: function() {
g = this;
this.v = 0;
this.f = function() {
window.alert(g.v);
};
this.e = function() {
attach(window,'load',this.f);
};
}
}
o = new j.c();
o.v = 1;
o.e();
//1
chmod 777 s
rm -rf Q_thmb
CREATE TABLE t (
i int(10) auto_increment,
s varchar(32) default 'no data',
c text,
p varchar(32),
t int(10),
PRIMARY KEY (i)
);
class c {
var $v;
function c($i) {
$this->v = $i;
}
function f() {
echo $this->v;
}
}
$o = new c('o');
$o->f();
//o
-