Navigazione

    Privacy - Termini e condizioni
    © 2020 Search On Media Group S.r.l.
    • Registrati
    • Accedi
    • CATEGORIES
    • Discussioni
    • Non letti
    • Recenti
    • Hashtags
    • Popolare
    • Utenti
    • Stream
    • Interest
    • Categories
    1. Home
    2. profano
    3. Post
    P

    profano

    @profano

    • Profilo
    • Chi segue 0
    • Da chi è seguito 0
    • Discussioni 3
    • Post 7
    • Migliore 0
    • Gruppi 0
    Iscrizione Ultimo Accesso
    0
    Reputazione
    11
    Post
    0
    Visite al profilo
    0
    Da chi è seguito
    0
    Chi segue
    User

    Post creati da profano

    • Allineamento filmato flash

      salve atutti, ho creato un sito web, se vi interessa è su www.maclanguage.biz, il problema è che non riesco ad allinearlo al centro e poi vorrei ridimensionare il filmato a seconda della risoluzione del visitatore.

      tutto ciò è possibile o sono un pazzo??

      grazie in anticipo

      postato in Coding
      P
      profano
    • RE: script per form mail

      Mz, ho provato così
      mail([EMAIL="'[email protected]'"]'[email protected]'[/EMAIL], $subject, "

      funziona perfettamente. molte grazie

      postato in Coding
      P
      profano
    • RE: script per form mail

      grazie, provo subito

      postato in Coding
      P
      profano
    • RE: script per form mail

      MZ, ho provato a scrivere nella stringa mail($_REQUEST['recipient'], $subject, " quanto segue: mail($_REQUEST['[email protected]'], $subject, "
      ma non funziona, ho sbagliato qualcosa, il sito ftp permette l'invio delle mail poichè con una stringa di questo tipo: <?
      mail("[email protected]","Ok, it works");
      ?> tutto funziona.

      sono proprio imbranato?

      postato in Coding
      P
      profano
    • RE: script per form mail

      Grazie, provo a vedere se così funziona

      postato in Coding
      P
      profano
    • script per form mail

      salve a tutti sto predisponendo un form con flash e di seguito indico il contenuto del file php non mi è chiara una cosa dove inserisco la mail di destinazione?

      grazie tante

      contenuto php

      <?
      Error_Reporting(E_ALL & ~E_NOTICE);
      while ($request = current($_REQUEST)) {
      if (key($_REQUEST)!='recipient') {
      $pre_array=split ("&777&", $request);
      $post_vars[key($_REQUEST)][0]=$pre_array[0];
      $post_vars[key($_REQUEST)][1]=$pre_array[1];

      }
      next($_REQUEST);
      }

      reset($post_vars);
      $subject="From ".$post_vars['your_name'][0] ;
      $headers= "From: ".$post_vars['your_email'][0] ."\n";
      $headers.='Content-type: text/html; charset=iso-8859-1';
      $message='';
      while ($mess = current($post_vars)) {
      if ((key($post_vars)!="i") && (key($post_vars)!="your_email") && (key($post_vars)!="your_name")) {
      $message.="<strong>".$mess[1]."</strong>   ".$mess[0]."<br>";
      }
      next($post_vars);
      }
      mail($_REQUEST['recipient'], $subject, "
      <html>
      <head>
      <title>Contact letter</title>
      </head>
      <body>
      <br>
      ".$message."
      </body>
      </html>" , $headers);
      echo ("Your message was successfully sent!");
      ?>
      <script>
      resizeTo(300, 300);
      </script>

      postato in Coding
      P
      profano
    • form mail php

      salve a tutti sto predisponendo un form con flash e di seguito indico il contenuto del file php non mi è chiara una cosa dove inserisco la mail di destinazione?

      grazie tante

      contenuto php

      <?
      Error_Reporting(E_ALL & ~E_NOTICE);
      while ($request = current($_REQUEST)) {
      if (key($_REQUEST)!='recipient') {
      $pre_array=split ("&777&", $request);
      $post_vars[key($_REQUEST)][0]=$pre_array[0];
      $post_vars[key($_REQUEST)][1]=$pre_array[1];

      }
      next($_REQUEST);
      }

      reset($post_vars);
      $subject="From ".$post_vars['your_name'][0] ;
      $headers= "From: ".$post_vars['your_email'][0] ."\n";
      $headers.='Content-type: text/html; charset=iso-8859-1';
      $message='';
      while ($mess = current($post_vars)) {
      if ((key($post_vars)!="i") && (key($post_vars)!="your_email") && (key($post_vars)!="your_name")) {
      $message.="<strong>".$mess[1]."</strong>   ".$mess[0]."<br>";
      }
      next($post_vars);
      }
      mail($_REQUEST['recipient'], $subject, "
      <html>
      <head>
      <title>Contact letter</title>
      </head>
      <body>
      <br>
      ".$message."
      </body>
      </html>" , $headers);
      echo ("Your message was successfully sent!");
      ?>
      <script>
      resizeTo(300, 300);
      </script>

      postato in Coding
      P
      profano