Como almaceno los datos de una variable en php

Hola una pregunta como almaceno en una base de datos la información que almacenan mis variables haaaa perdón no se he leído y encontré un comentario pero no me ayudo mucho help plis
?>
<tr >
<td><?php echo $idr2; ?></td>
<td><?php echo $nom1; ?></td>
<td><?php  if($v==100 and $d==100){echo "IDEAL"; }
      if($v==100 and $d==80){echo "JUGADOR CLAVE"; }
      if($v==100 and $d==60){echo "CONTAGIOSO"; }
      if($v==80 and $d==100){echo "JUGADOR CLAVE"; }
      if($v==80 and $d==80){echo "CUBRE PREFIL"; }
      if($v==80 and $d==60){echo "NO CREE EN LA EMPRESA"; }
      if($v==60 and $d==100){echo "SIN RESULTADOS"; }
      if($v==60 and $d==80){echo "SIN RESULTADOS"; }
      if($v==60 and $d==60){echo "ENEMIGO"; }
     ?>
     </td>
<td><?php if($v==100 and $d==100){echo "A1"; }
      if($v==100 and $d==80){echo "B1"; }
      if($v==100 and $d==60){echo "C1"; }
      if($v==80 and $d==100){echo "A2"; }
      if($v==80 and $d==80){echo "B2"; }
      if($v==80 and $d==60){echo "C2"; }
      if($v==60 and $d==100){echo "A3"; }
      if($v==60 and $d==80){echo "B3"; }
      if($v==60 and $d==60){echo "C3"; }
     ?>
     </td>
<td><?php
Mi correo es [email protected]

1 Respuesta

Respuesta
1
Espero que te pueda ayudar con esto..
<?php
// Conecta con la base de datos
$host="localhost";
$usuario="usuario";
$password="password";
$basedatos="nombreBaseDeDatos";
if (@!$afi_mysql_conexion) {
    $afi_mysql_conexion=mysql_connect($host,$usuario,$password);
    @mysql_selectdb($basedatos);
}
mysql_query("INSERT INTO tabla (campo) VALUES ('$variable')");
?>
Si necesitas algo, aquí estaré!

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas