Well, there are several ways to do that. One option could be storing the selected items on $_SESSION variable, and then print it as html markup from venta.php Also, you could add events on click to items ( elements) in order to remove them. This is just like a pseudocode, of course, you need to validate the data, at least this try to explain a flow process on how you deal with remove/add items using php, jquery and javascript with no plugins.
shop.php (where the table of items to choose exists):
<!-- here you add jquery and your own javascript to play with that -->
<table>
<tr>
<td><a name="item_id" href="#">Item one</a></td>
</tr>
</table>
<div class="my-selected-items"></div>
<a hef="link-to-proceed-order">Proceed order</a>
javascript:
// add the result of php response to the *selected items* div
function selectRow(id) {
$.ajax
({
type: "POST",
url: "venda.php?action=add",
data: {selected: id},
cache: false,
success: function(data)
{
$('.my-selected-items').html(data);
register_delete_action();
}
});
}
function register_delete_action()
{
$(".remove-item").click(function(){
$.ajax
({
type: "POST",
url: "venda.php?action=delete",
data: {selected: id},
cache: false,
success: function(data)
{
$('.my-selected-items').html(data);
register_delete_action();
}
});
});
}
venta.php
$action = $_GET['action'];
switch ($action)
{
case "add": addItem();
case: "delete": deleteItem();
}
function addItem(){
$selected_id = $_POST['selected'];
if(!array_key_exists('items', $_SESSION))
{
$_SESSION['items'] = array();
}
$_SESSION['items'][$selected_id] = array("id" => $item['id'], "name" => $item['name']);
//print the selected items in html markup
echo "<ul>";
foreach ($_SESSION['items'] as $id => $selection)
{
echo '<li> <a href="#" class="remove-item" name="' .$selection["name"] . '">' .$selection["name"] . '</a> </li>';
}
echo "</ul>";
}
function deleteItem(){
$selected_id = $_POST['selected'];
unset($_SESSION['items'][$selected_id]);
//print the selected items in html markup
echo "<ul>";
foreach ($_SESSION['items'] as $id => $selection)
{
echo '<li> <a href="#" class="remove-item" name="' .$selection["name"] . '">' .$selection["name"] . '</a> </li>';
}
echo "</ul>";
}