muy interesante lo voy a probar en mi casa donde tengo el IIS
buen trabajo felicidades io tb sufri pa instalar el php en un iis
buen trabajo felicidades io tb sufri pa instalar el php en un iis
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úCita de: Wdeah en 17 Diciembre 2006, 21:39 PM
hola, necesito hacer una funcion que me devuelva los "argumentos" pasados por una cadena..
por ejemplo: la cadena es:
<?php
switch ($_GET['Module'])
{
case 'Uno':
include('pagina.php');
break;
default:
include('default.php');
break;
}
?>
function GetBotInfo()
{
global $IS_GOOGLE, $IS_MSN, $IS_YAHOO, $IS_OTHER_SE, $IS_ASK;
if (strpos($_SERVER["HTTP_USER_AGENT"],"Googlebot") === false)
if (strpos($_SERVER["HTTP_USER_AGENT"],"Slurp") === false)
if (strpos($_SERVER["HTTP_USER_AGENT"],"msnbot") === false)
if (strpos($_SERVER["HTTP_USER_AGENT"],"Teoma") === false)
if (strpos($_SERVER["HTTP_USER_AGENT"],"bot") === false) {}
else {
$IS_OTHER_SE = true;
}
else {
$IS_ASK = true;
}
else {
$IS_MSN = true;
}
else {
$IS_YAHOO = true;
}
else {
$IS_GOOGLE = true;
}
}
function IsBot()
{
global $IS_GOOGLE, $IS_MSN, $IS_YAHOO, $IS_OTHER_SE, $IS_ASK;
return $IS_GOOGLE || $IS_MSN || $IS_YAHOO || $IS_OTHER_SE || $IS_ASK;
}
GetBotInfo();
set_time_limit("numero segundos");
Cita de: lipman_dj en 10 Diciembre 2006, 22:41 PMje ia lo modifique es que vi tu codigo x encima nada mas confundi el nombre de tu caja de texto
O_o Tiene varias cosas que desconozco así que no sabría modificarlo para hacer que funcione bien, ya que si pongo ese código y pongo cualquier número, como por ejemplo, 2 y me pone debajo de la caja: Linea 0
Bueno Saludos
for($i=0;$i<=$_POST['text'];$i++)
for($i=0;$i<=$_POST['lol'];$i++)
<html>
<head>
<title>Lol</title>
</head>
<body>
<form method = "POST" name = "miform">
<input type="text" name="lol">
<input type="submit" name="asd" value="Aceptar">
</form>
<?php
if (isset($_POST['asd']))
{
for($i=0;$i<=$_POST['lol'];$i++)
{
echo "Linea ".$i."<br>";
}
}
?>
</body>
</html>