Non so cosa sia brackets.
Però il codice HTML di entrambe le pagine ha problemi:
Nella prima pagina ( aforisma1.php ):
Codice HTML:
<html>
<head>
<title>titolo</title>
</head>
<style>
body {
background-image: url("elp.png");
background-color: #93B874;
background-repeat: no-repeat;
background-position: 80% 10%;
}
</style>
<body><!-- BEGIN AV_TOOLBAR -->
<div id="av_toolbar_regdiv">
<div class="av_site"><a target="_blank" href="https://it.altervista.org/crea-sito-gratis.php?utm_campaign=toolbar&utm_source=link&utm_medium=link" title="Siti, blog e web hosting gratis">Crea sito</a></div>
</div>
<script type="text/javascript">
(function(d, s) {
var fjs = d.getElementsByTagName(s)[0], js = d.createElement(s);
js.src = "//tb.altervista.org/js/script.js?1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script'));
</script>
<!-- END AV_TOOLBAR -->
<a href="aforisma2.php"><tr><td colspan="8"><input type="submit" value="prova1"></td></tr></a>
<form action=/aforisma1.php method="post">
</body>
</html>
- <style> non sta né in <head> né in <body>. Non puoi inserire codice HTML in quella posizione. In particolare <style> dovrebbe stare in <head>, quindi chiudi </head> dopo </style> e non prima.
- Stai utilizzando <tr> e <td> senza <table>. Quei due tag non hanno senso fuori da <table>.
- Hai aperto un <form> che non ha nulla: nessun input e non viene mai chiuso.
Pagina 2:
Codice HTML:
<html>
<head>
<title>aforisma2</title>
<h1> </h1>
</head>
<style>
body {
background-color: #93B874;
}
</style>
<body><!-- BEGIN AV_TOOLBAR -->
<div id="av_toolbar_regdiv">
<div class="av_site"><a target="_blank" href="https://it.altervista.org/crea-sito-gratis.php?utm_campaign=toolbar&utm_source=link&utm_medium=link" title="Siti, blog e web hosting gratis">Crea sito</a></div>
</div>
<script type="text/javascript">
(function(d, s) {
var fjs = d.getElementsByTagName(s)[0], js = d.createElement(s);
js.src = "//tb.altervista.org/js/script.js?1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script'));
</script>
<!-- END AV_TOOLBAR -->
<form action=/aforisma2.php method="post">
<table>
<tr><td>testo</td></td></tr>
</body>
<footer> afdg</footer>
</html>
- <h1> non può stare in <head>
- Stesso discorso di prima per <style>
- Hai aperto <form> e <table> ma non sono mai chiusi
- <footer> deve stare dentro <body>.
Originalmente inviato da
Aforismadelgiorno
2)Poi volevo chiedere se nella modifica del file di configurazione di phpmyadmin alla voce $cfg['Servers'][$i]['extension'] posso mettere sia msqli che mysql e se si possono utilizzare ambedue grazie
Come mai necessiti di questa cosa?
Ciao!