Re: bbMenu 1.1 programming problem (advanced!)
Hmm well so the easiest way is to keep the external file containing:
<?php
$id = $_POST['id'];
$content = $_POST['content'];
echo stripslashes(htmlentities($content)); ?>
This file returns the edited text (this works), but how can I let it safe the variables to the database at the same time?
It’ll have to save: $content to the table bb_menu -> item
where $id = edit_id
Tried some stuff, but couldn’t get this updated into the db