I 'm reading the code of robin nest and found few lines of codes i don't understand:
$_GET ['view']
$_GET ['add']
$_GET ['remove']
can't find the html codes for these variables, view, add, remove
for $_POST, we need to write these few lines of html codes
<form method='post' action=' ...
...<input type='text' ... value='$user' ...
then we can write php code to get the variable user,
$user = sanitizeString($_POST['user']);












