*sighs*

Very simple answer. else CAN NOT have arguments
EG
if ( x is true ) {
do this
}
elseif ( y is true ) {
do this
}
else {
print "Y is not true, X is not true";
}

(The code above is not real code, it is an example of how if, elseif and
else work)

Change your
else( $submit )
to
else

You do not need an
elseif( $submit )
as you already have an
if( $submit ) - if $submit is not true it will run the else

----- Original Message -----
From: "zeus" <[EMAIL PROTECTED]>
To: "Dash McElroy" <[EMAIL PROTECTED]>
Cc: "Howard, Robert P" <[EMAIL PROTECTED]>; "phpwin"
<[EMAIL PROTECTED]>
Sent: Wednesday, November 20, 2002 5:15 AM
Subject: Re: [PHP-WIN] parse error


> i got the error in these line..
>
> ..code before...
> else($submit)
> ..after .....
>
>
> Maybe its vaery vary for some poeple wit diffrent setup of aplication,
> or anything to do with my code,
> i will look up my code again...maybe the erro has gone away ^^;
>
>
>
> Dash McElroy wrote:
>
> >What line number are you getting the parse error at? It's amazing what
> >that can tell you.
> >
> >-Dash
> >
> >On Tue, 19 Nov 2002, zeus wrote:
> >
> >
> >
> >>Nope! i try that one too, but  the parse error thing still exist....
> >>
> >>
> >>Howard, Robert P wrote:
> >>
> >>
> >>
> >>>change your else($submit) statement to else
> >>>
> >>>-----Original Message-----
> >>>From: zeus [mailto:[EMAIL PROTECTED]]
> >>>Sent: Wednesday, 20 November 2002 4:25 AM
> >>>To: phpwin
> >>>Subject: [PHP-WIN] parse error
> >>>
> >>>
> >>>i get parse error with this code, what's wrong with the code? i think i
> >>>have give the "else" statement  in ther right way.
> >>>help,neet it so bad.....
> >>>
> >>>Thanks....
> >>>
> >>>===========================================
> >>><form action="<? echo $PHP_SELF ?>" method="post">
> >>>
> >>><?PHP
> >>>/////////////////////
> >>>//configure       ///
> >>>/////////////////////
> >>>require("config.php");
> >>>
> >>>/////////////////////
> >>>//connect ke mysql///
> >>>/////////////////////
> >>>mysql_connect($db_host,$db_user,$db_pass) or die ("cannot connect");
> >>>@mysql_select_db($db_base) or die ("cannot select db");
> >>>
> >>>
> >>>if($submit)//kalo tombol submit belum di tekan
> >>>{
> >>>   $result=mysql_query("SELECT * from balon_chara");
> >>>   while($r=mysql_fetch_array($result))//loop
> >>>   {
> >>>   $chara_id=$r["chara_id"];
> >>>   $judul=$r["judul"];
> >>>   ?>
> >>>          <input type="radio" name="chara_id" value="<? echo $id; ?>">
> >>>          <? echo $id; ?>
> >>>          <? echo $judul; ?><br>
> >>>   <?}?>
> >>>          <input type="submit" name="submit" value="submit"></form>
> >>>   <?}?>
> >>>
> >>><?
> >>>else($submit)
> >>>   {
> >>>   $sql = "DELETE FROM balon_chara WHERE chara_id='$chara_id'";
> >>>   $result = mysql_query($sql);
> >>>   echo "recold deleted";
> >>>   }
> >>>?>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>
> >>
> >>--
> >>PHP Windows Mailing List (http://www.php.net/)
> >>To unsubscribe, visit: http://www.php.net/unsub.php
> >>
> >>
> >>
> >>
> >
> >
> >
> >
> >
>
>
>
>
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to