Tipo,eu queria pode limitar o tamanho do espaço que cada um podia usar,mandar e-mails no formato html tb e etc... alguem sabe ?
vls.Abraços
Posted 09/05/2005, 17:44
Posted 09/05/2005, 17:53
Posted 09/05/2005, 18:01
Posted 09/05/2005, 22:31
Posted 10/05/2005, 12:00
Posted 10/05/2005, 17:01
<?php
$ok = TRUE;
$file = fopen ("http://usuario:senha@localhost:2082/frontend/xBr/mail/doaddpop.html?email=$email&domain=$domain&password=$password"a=2", "r");
if (!$file) {
$ok = FALSE;
$target = "error.htm";
}
while (!feof ($file)) {
$line = fgets ($file, 1024);
if (ereg ("already exists!", $line, $out)) {
$ok = FALSE;
$target = "erro.php";
}
}
fclose($file);
if ($ok) {
$target = "ok.php";
$form_fields=array_keys($HTTP_POST_VARS);
$temp="\n";
while($field=array_pop($form_fields)){
$temp.=" $field : = $HTTP_POST_VARS[$field] \n";
}
mail($HTTP_POST_VARS['to'],"E-Mail Gratis",$temp);
}
header("location:$target");
?><form action="criaemail.php" method="post" name="email" id="email"> <p><font face = "Verdana" size = "-1" >E-Mail:</font> <input name="email" type="text" id="email"> <input name="domain" type="hidden" id="domain" value="seudominio!!"> <br> <font face = "Verdana" size = "-1" >Senha:</font> <input name="password" type="text" id="password"> <br><input type="submit" value="Criar"> </p> </form>
0 membro(s), 1 visitante(s) e 0 membros anônimo(s)