fout rond het woord else
peter druyts
08/12/2010 00:27:57hallo, heb het volgend stukje in mijn php create.php gezet maar krijg steeds de fout melding rond het woord "else" staat dat daar niet goed of moet er nog iets bij.
if(mysql_query($result)){
print"Succes in Table creation!.....
<br/><br/><b>That completes the table setup,now delete the file<br/>
named'create_Table.php' and you are ready to move on.Let us go</b>".
} else { print'no Table created. You have problems in the system already,backtrack and debug!',
}
hoop op een snell oplossing
groetjes
peter
if(mysql_query($result)){
print"Succes in Table creation!.....
<br/><br/><b>That completes the table setup,now delete the file<br/>
named'create_Table.php' and you are ready to move on.Let us go</b>".
} else { print'no Table created. You have problems in the system already,backtrack and debug!',
}
hoop op een snell oplossing
groetjes
peter
PHP hulp
25/11/2024 07:01:09Ozzie PHP
08/12/2010 00:45:34Code (php)
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
<?php
if (mysql_query($result)) {
echo 'Succes in Table creation!..... <br/><br/><b>That completes the table setup,now delete the file<br/>named \'create_Table.php\' and you are ready to move on.Let us go</b>';
} else {
echo 'no Table created. You have problems in the system already,backtrack and debug!';
}
?>
if (mysql_query($result)) {
echo 'Succes in Table creation!..... <br/><br/><b>That completes the table setup,now delete the file<br/>named \'create_Table.php\' and you are ready to move on.Let us go</b>';
} else {
echo 'no Table created. You have problems in the system already,backtrack and debug!';
}
?>
Gewijzigd op 08/12/2010 00:46:12 door Ozzie PHP