mi pregunta s la siguientee aun funciona SSLStrip? y e que nvegadores he leido k en firefox y chrome no funciona ya
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
<form id="signupform" name="formulario" autocomplete="off" action="inserimagen.php" method="post" enctype="multipart/form-data">
<input type="file" name="file[]" />
<input type="file" name="file[]" />
<input type="submit" name="button" id="button" value="Enviar">
</body>
</form>
if(isset($_POST['file'])) {
foreach ($_POST['file'] as $v) {
$destino='fotos';
$imagen= $_FILES['file']['name'];
$tipo_archivo = $_FILES['file']['type'];
$tamano_archivo = $_FILES['file']['size'];
$nomimag=$v.'.jpg';
if (strpos($tipo_archivo, "jpeg") || strpos($tipo_archivo, "jpg" ))
{
if (move_uploaded_file($_FILES['file']['tmp_name'],$destino.'/'.$nomimag))
{
}//fin del if para mover la foto
}//fin del if para mover la foto
}
}
<?php
foreach ($_FILES["foto"]["error"] as $key => $error) {
$nombre_archivo = $_FILES["foto"]["name"][$key];
$tipo_archivo = $_FILES["foto"]["type"][$key];
$tamano_archivo = $_FILES["foto"]["size"][$key];
$temp_archivo = $_FILES["foto"]["tmp_name"][$key];
$nom_img = $nombre_archivo;
$directorio = 'fotos'; // Directorio
if (move_uploaded_file($temp_archivo,$directorio . "/" . $nom_img))
{
echo "Las fotos se publicaron correctamente";
}
}
?>
<?php
$month=strtotime('2011-01-01');
$end =strtotime('2011-08-01');
while($month < $end) {
echo date('Y M ', $month)."<br>";
$month = strtotime("+1 month", $month);
} ?>
|nombre| | apellidos| | aula| | especialidad| |
carlos | hernandez | C1 | ELECTRONICA |
MARTIN | perez | C2 | SISTEMAS |
<form action="" method="post">
<center> <?php echo $pregunta;?><br>
<input name="opcion" type="radio" value="si" id="opcion"/>Si
<input name="opcion" type="radio" value="no" id="opcion"/>No<br>
<input type="submit" name="button" id="boton" value="Votar" />
</center>
<div id="resultados" ></div>
</form>
var x;
x=$(document);
x.ready(inicializarEventos);
function inicializarEventos()
{
var x;
x=$("#boton");
x.click(presionSubmit);
}
function presionSubmit()
{
var v=$("#opcion").attr("value");
$.getJSON("consultas/votar.php",{opcion:v},llegadaDatos);
return false;
}
function llegadaDatos(datos)
{
$("#resultados").html(datos.variable); //muestra el error!
}
<?php
header('Content-Type: text/txt; charset=ISO-8859-1');
session_start();
include("../conexion/conexion.php");
$opcion=$_REQUEST['opcion'];
echo "{'variable':'$opcion' }";
?>
[b] [/b]
cuando lo que deberia de hacer es esto[b]RedZer[/b]
<script language="javascript">
<!--
function Smile(texto)
{
document.formulario.msj.value = document.formulario.msj.value + texto;
}
</script>
<a href=javascript:Smile('[b][/b]')><img src=../letras/bold.gif border=0 title="Negritas"></a>
id_tiposocio | |nocatorcena | |fecha | |aportacion_catorcenal | |adeudo |
06500014 | 1 | 2011-01-05 | 200 | --- |
06500014 | 2 | 2011-01-19 | 200 | --- |
06500014 | 3 | 2011-02-05 | 200 | 100 |
id_tiposocio | |nocatorcena | |fecha | |aportacion_catorcenal | |adeudo |
06500014 | 1 | 2012-01-05 | 200 | 100 |
06500014 | 2 | 2012-01-19 | 200 | --- |
06500014 | 3 | 2012-02-05 | 200 | --- |
$inicio=strtotime('2011-01-05');
$final=strtotime('2011-02-02');
while($inicio <= $final) {
echo date("Y-m-d", $inicio)."<br>";
$inicio= strtotime("+14 day", $inicio); }
$inicio=strtotime('2011-01-05');
$final=strtotime('2013-02-02');
while($inicio <= $final) {
echo date("Y-m-d", $inicio)."<br>";
$inicio= strtotime("+14 day", $inicio); }
No de catrocena | fecha |
1 | 2011-01-05 |
2 | 2011-01-19 |
3 | 2011-02-02 |