hallo, 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
<?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!';
}

?>
bedankt Ozzie, het is gelukt,groetjes peter
geen dank, graag gedaan :)

Reageren