una vez dividido como se cual voy a tomar solo los valores que necesito, tendran un ejemplo porfa
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ú
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
<script src="js/showHide.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#hide').click(function(evento) {
$('#hide').fadeOut(1000);
});
$('.show_hide').showHide({
speed: 1000, // speed you want the toggle to happen
easing: '', // the animation effect you want. Remove this line if you dont want an effect and if you haven't included jQuery UI
changeText: 1, // if you dont want the button text to change, set this to 0
showText: 'Show More',// the button text to show when a div is closed
hideText: 'Close' // the button text to show when a div is open
});
});
</script>
<center><a href="#" class="show_hide" rel="#slidingDiv" style="color:#333333; white-space: nowrap; font-family:Arial, Helvetica, sans-serif;"><i><b><u><span id="hide-show"><span id="hide">Show More</span></span></u></b></i></a><br />
<img src="imagenes/hand.png" /></a></center>
MSComm1.Output = "AT+CMGF=1" & vbCrLf
Sleep (300)
MSComm1.Output = "AT+CMGS=" & Chr(34) & "9999411548 "& Chr(34) & vbCr
MSComm1.Output = "Hola enviar sms" & Chr(26) & vbCr
<?php
session_start();
include("conexion.php");
$valido=true;
if(isset($_POST['entrar'])){
$usuario=mysql_real_escape_string($_POST['nombre']);
$clave=mysql_real_escape_string(md5($_POST['pass']));
$consulta="Select Id, Nombre, Password from usuarios where Nombre='$usuario' and Password='$clave'";
$result=mysql_query($consulta) or die (mysql_error());
$filasn= mysql_num_rows($result);
if ($filasn<=0 || isset($_GET['login']) ){
$valido=false;
}else{
$rowsresult=mysql_fetch_array($result);
$_SESSION['idusuario']= $rowsresult['Id'];
$valido=true;
//guardamos en sesion el nombre del usuario
$_SESSION["Nombre"]=$usuario;
header("location:principal.php?login=true");
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
<link href="stile.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="principal">
<div class="spacio1"></div>
<div class="spacio">
<div align="center"><img src="imagenes/logo.png" alt="logo" width="902" height="203" /></div>
</div>
<div class="spacio2"></div>
<div class="lista">
<div class="lista1"></div>
<div class="lista2">
<ul id="button">
<li><a href="" style="cursor: default"><b>USUARIO EXISTENTE</b></a></li>
<li><a href="../index.html"><b>HOME</a></b></li>
<li><a href="usuarios.php"><b>LOGIN</a></b></li>
</ul>
</div>
<div class="lista3"></div>
</div>
<div class="centro"></div>
<div class="centro1">
<br>
<br>
<form action="login_user.php" method="POST">
<table width="309" height="168" border="1" align="center">
<tr>
<td height="45" colspan="2" align="center"><strong>LOGIN USERS..</strong> </td>
</tr>
<tr>
<td width="101" height="10" align="center"><strong>User</strong></td>
<td width="192"><input name="nombre" type="text" size="30" style="height:28px"/></td>
</tr>
<tr>
<td height="10" align="center"><strong>Password</strong></td>
<td><input name="pass" type="password" size="30" style="height:25px"/></td>
</tr>
<tr>
<td height="34" colspan="2" align="center">
<input type="submit" name="entrar" value="Accept"/>
<input type="reset" name="Submit" value="Clear"/>
</td>
</tr>
</table>
<?php if ($valido==false) {
echo '<p align=center><font color="#FF0000">* Login authentication failed...</p>';
}?>
</form>
</div>
</div>