Hallo dedlfix,
ich habe jetzt erst mal ein ganz anderes Problem:
<div>
<label>
<input type="checkbox"
class="todo"
name="code[]"
value="<?php echo htmlspecialchars($array['pt_status']); ?>"
<?php if ($array['pt_status'] == 1) { ?> checked <?php } ?>>
<span <?php if ($array['pt_status'] == 1) { ?> class="done" <?php } ?>>
<?php echo htmlspecialchars($array['pt_titel']); ?>
</span>
</label>
</div>
$(document).ready(function() {
$('.todo').click(function() {
alert($(this).val())
var formData = {
'todo': $(this).val()
};
$.ajax({
url: "updateToDo.php",
type: "post",
data: formData,
success:function(d) {
}
});
});
});
Ich muss doch noch irgendwie die ID vom Datensatz mitgeben? Wie mache ich dieses in diesem Fall? Ein Hidden Feld einfügen?
Bis bald!
Bernd