You don't have a closing } for function obrada().

When the line number of the parse error is the last line of the file, I've
found it is almost *always* due to a missing brace, paren, or quote
somewhere in the file.

Doug Granzow
[EMAIL PROTECTED]

"Nikola Veber" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi
> I'm having trobles with this code. Can you take a look at it?
> Parse error:  parse error in C:/XITAMI/webpages/index.php on line 34 is
the
> error msg.
>
> thanx
>
> <html>
> <head>
> <title>Example 2.01</title>
> <meta http-equiv="Content-Type" content="text/html;
> charset=iso-8859-1">
> </head>
> <body>
> <?php
> if (emty(provera)) {pokazi();}
> else {obrada();}
> ?>
> <?php
> function pokazi() {
> global $PHP_SELF;
> ?>
> <form target = "<?php echo $PHP_SELF ?>;" METHOD = get>
> <input type = "text" name = "ime">
> <input type = "text" name = "vrednost"
> <input type ="hidden" name = "provera" value = "rezultati"
> </form>
> <?php
> }
> ?>
> <?php
> function obrada() {
> global $ime;
> global $vrednost;
> if ($ime == "Nikola" && $vrednost == 100){
> echo "Zdravo $ime <br>";
> echo "Iznos na Vasem racunu je $vrednost dolara";
> }
> ?>
> </body>
> </html>
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to