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-WIN] parse error ChaoticWorks
- [PHP-WIN] Re: parse error Phillip Oertel
- RE: [PHP-WIN] parse error zeus
- RE: [PHP-WIN] parse error Howard, Robert P
- Re: [PHP-WIN] parse error zeus
- Re: [PHP-WIN] parse error Dash McElroy
- Re: [PHP-WIN] parse error zeus
- Re: [PHP-WIN] parse error Stephen Edmonds
- Re: [PHP-WIN] parse error Cam Dunstan
- RE: [PHP-WIN] parse error Charles P. Killmer