I want to make an image which is clickable and in case when its clicked I use $_POST to get it's value and use it. It looks like this:
if (isset($_POST['checked'])){
$q = mysql_query("UPDATE table SET checked = 2 WHERE tr_id = ". $_POST['checked']);
}
<form action="" method="POST">
<input type="image" src="images/checked.png" name="checked" value="<?php echo $info[0]; ?" />
</form>
Well in Chrome it works, but then I realised that in IE and Mozilla it doesn't work, can anyone suggest me same thing but so it works on all browsers?
Main thing is that this images value field get it's value from database with mysql_fetch_row and I must use this value in update query.
$_POSTvariables directly in your MySQL queries. Look into value substitution or use an abstraction layer. – tomhallam Oct 29 '12 at 13:34$_POST['checked']has a value like:23'); DROP TABLE table ;--? Check this out: bobby-tables.com – Paolo Moretti Oct 29 '12 at 13:41