Ciao a tutti,
vi anticipo che sono una sega con il php, ho cominciato a studiarlo da poco e quello che fino ad ora mi ha salvato sono le reminiscenze del tecnico informatico.
Un amico mi ha dato una mano a scrivere questo codice che ho inserito in una pagina joomla tramite un modulo che legge e interpreta del codice php, ora il problema è che non so come inviare il tutto tramite il tasto invia su una mail... mi potete dare una mano ?
grazie
vi anticipo che sono una sega con il php, ho cominciato a studiarlo da poco e quello che fino ad ora mi ha salvato sono le reminiscenze del tecnico informatico.
Un amico mi ha dato una mano a scrivere questo codice che ho inserito in una pagina joomla tramite un modulo che legge e interpreta del codice php, ora il problema è che non so come inviare il tutto tramite il tasto invia su una mail... mi potete dare una mano ?
grazie
PHP:
<?php
$db = mysql_connect("my_ip","user","pass");
mysql_select_db("mio_database");
$r = mysql_query("SELECT id,last_name FROM some_table WHERE team_id=1 and position_id=3");
$r2 = mysql_query("SELECT id,last_name FROM some_table WHERE team_id=1 and position_id=4");
$r3 = mysql_query("SELECT id,last_name FROM some_table WHERE team_id=1 and position_id=5");
$r4 = mysql_query("SELECT id,last_name FROM some_table WHERE team_id=1 and position_id=6");
$drop = "<select>";
while($row=mysql_fetch_assoc($r)) {
$drop .= "<option value='".$row['id']."'>".$row['last_name']."</option>";
}
$drop .= "</select>";
$drop2 = "<select>";
while($row=mysql_fetch_assoc($r2)) {
$drop2 .= "<option value='".$row['id']."'>".$row['last_name']."</option>";
}
$drop2 .= "</select>";
$drop3 = "<select>";
while($row=mysql_fetch_assoc($r3)) {
$drop3 .= "<option value='".$row['id']."'>".$row['last_name']."</option>";
}
$drop3 .= "</select>";
$drop4 = "<select>";
while($row=mysql_fetch_assoc($r4)) {
$drop4 .= "<option value='".$row['id']."'>".$row['last_name']."</option>";
}
$drop4 .= "</select>";
echo "<div style='font-family:monospace;text-align: center;margin-bottom:30px;font-size:30px;'>Formazione titolare.</div>";
echo "<ciao style='margin-left:40%;font-family:monospace;'>Portiere</span>:" . $drop. "<br>";
echo "<span style='margin-left:5%;font-family:monospace;'> difensore</span> ". $drop2;
echo "Difensore: " . $drop2. $portiere;
echo "Difensore: " . $drop2;
echo "Difensore: " . $drop2 ."<br>";
echo "<span style='margin-left:10%;font-family:monospace;''>Centrocampista</span> ". $drop3;
echo "Centrocampista" . $drop3;
echo "Centrocampista: " . $drop3. "<br>";
echo "<span style='margin-left:13%;font-family:monospace;''>Attaccante </span>". $drop4;
echo "Attaccante: " . $drop4;
echo "Attaccante: " . $drop4. "<br>";
echo "<span style='border: 1px solid black;font-family:monospace;''>CIao sono un div.</span>";
echo "<div style='font-family:monospace;text-align: center;margin-bottom:30px;font-size:30px;'>Riserve.</div>";
echo "<span>Portiere 1</span>" . $drop;
echo "Portiere2" . $drop. "<br>";
echo "Difensore1: " . $drop2;
echo "Difensore2: " . $drop2. "<br>";
echo "Centrocampista 1" . $drop3;
echo "Centrocampista 2" . $drop3. "<br>";
echo "Attaccante 1 : " . $drop4;
echo "Attaccante 2: " . $drop4. "<br>";
echo "Centrocampista capitano" . $drop3. "<br>";
?>
Ultima modifica di un moderatore: