Just read the error messages - they describe exactly what the problem is.
Go to the lines they reference and look for the problems they mention:
croatiangrn;11022721 wrote:Notice: Undefined variable: send in C:\xampp\htdocs\vicevi.php on line 34
That's this line:
if ("SUBMIT" == $send) {
You don't define [font=monospace]$send[/font] before you try to use it here (hence the notice about it being "undefined").
As a side note, an undefined variable has the value of [font=monospace]null[/font], so this condition will fail.
croatiangrn;11022721 wrote:Notice: Undefined variable: PHP_SELF in C:\xampp\htdocs\vicevi.php on line 63
And that line is here:
echo("<P><A HREF='$PHP_SELF?dodajvic=1'>" .
Same deal. Here, at least, I would suspect that you intended to write [font=monospace]$_SERVER['PHP_SELF'][/font].
[edit] An unrelated suggestion:
...format / indent your code and use the
BBCode tags in your post.
...use the standard[B] if(){ /* code */ }else{ /* code */ }[/B] syntax for control structures,
and avoid the alternate [B]if(): /* code */ else: /* code */ endif;[/B] syntax.
It's much easier to follow, and less error-prone.[/I]