Visualizzazione risultati 1 fino 7 di 7

Discussione: Titolo sulla barra di IE per un pop up

  1. #1
    Guest

    Predefinito Titolo sulla barra di IE per un pop up

    date un okkiata al mio sito www.noisytrip.altervista.org se klikkate in basso su firma il guestbook si aprirà una finestra di pop up.

    cosa devo fare per non far apparire sulla barra il link ma bensi "Firma il Guestbook" ?


    grazie mille

  2. #2
    L'avatar di heracleum
    heracleum non è connesso Utente storico
    Data registrazione
    21-01-2004
    Messaggi
    3,333

    Predefinito

    In Mozilla ovviamente appare solo la scritta "Mozilla" e non il lnk vabè..

    La soluzione è molto semplice, basta utilizzare -come qualsiasi altra pagina html- il tag html <TITLE>mio titolo</TITLE> che probabilmente hai dimenticato nel popuppino.
    Avvertimento: richiedere in privato questioni tecniche produrrà inevitabilmente una supercazzola prematurata come risposta. (5 served)

  3. #3
    L'avatar di NoWhere
    NoWhere non è connesso Moderatore
    Data registrazione
    14-02-2003
    Residenza
    New Balarm
    Messaggi
    4,118

    Predefinito

    confermo ciò ke ha detto hera e ho visto ke manca il tag <title>
    se nn vuoi ke appare nulla basta ke dai uno spazio a vuoto tra i due tag, così:
    Codice HTML:
    <title> <title>
    :winkOLD:

  4. #4
    Guest

    Predefinito

    la pagina di pop up è una pagina in php quindi title dove lo inserisco?


    questo è il tag da mettere nella pagina in html:
    <script type="text/javascript">
    function apri(url) {
    newin = window.open(url,'titolo','scrollbars=no,resizable= no, width=500,height=300,status=no,location=no,toolbar =no');
    }
    </script>

    mentre il file in php è questo:
    <?



    //GO TO WHERE IT SAYS 'EDIT THESE VARS', and 'FEATURES'



    // DONT EDIT
    function tg($action, $nick, $stuffsaid, $personsite){
    $talkdatafile = "tc.txt";





    //FEATURES

    $sfeature = "0";
    //site feature, make it 1 to enable





    if ($sfeature == "1"){
    if ($action == "talk") {
    if(strlen($nick) >= 3){
    if(strlen($stuffsaid) >= 3){
    $t_fp = fopen ($talkdatafile, "a+");
    $talkdate = date("H:i d/m/y");
    $ip = getenv(REMOTE_ADDR);
    $nicktwo = ereg_replace('<', ' ', $nick);
    $nickthree = ereg_replace('>', ' ', $nicktwo);
    $personsiteone = ereg_replace('<', '', $personsite);
    $personsitetwo = ereg_replace('>', '', $personsiteone);
    $personsitefinal = ereg_replace(' ', '', $personsitetwo);
    $one_stuffsaid = ereg_replace('<', ' ', $stuffsaid);
    $two_stuffsaid = ereg_replace('>', ' ', $one_stuffsaid);
    $f_stuffsaid = stripslashes("$two_stuffsaid");
    $f_nick = stripslashes("$nickthree");
    $writedata = $talkdate."|".$f_nick."|".$f_stuffsaid."|".$person sitefinal."|".$ip."|"."\n";
    $test_last = file($talkdatafile);
    $test_lastr = array_reverse($test_last);
    $last_e = $test_lastr[0];
    if($writedata != $last_e){
    fwrite ($t_fp, $writedata);
    fclose ($t_fp);
    }
    }
    }
    }
    } else {
    if ($action == "talk") {
    if(strlen($nick) >= 3){
    if(strlen($stuffsaid) >= 3){
    $t_fp = fopen ($talkdatafile, "a+");
    $talkdate = date("H:i d/m/y");
    $ip = getenv(REMOTE_ADDR);
    $nicktwo = ereg_replace('<', ' ', $nick);
    $nickthree = ereg_replace('>', ' ', $nicktwo);
    $one_stuffsaid = ereg_replace('<', ' ', $stuffsaid);
    $two_stuffsaid = ereg_replace('>', ' ', $one_stuffsaid);
    $f_stuffsaid = stripslashes("$two_stuffsaid");
    $f_nick = stripslashes("$nickthree");
    $writedata = $talkdate."|".$f_nick."|".$f_stuffsaid."|".$ip."|" ."\n";
    $test_last = file($talkdatafile);
    $test_lastr = array_reverse($test_last);
    $last_e = $test_lastr[0];
    if($writedata != $last_e){
    fwrite ($t_fp, $writedata);
    fclose ($t_fp);
    }
    }
    }
    }
    }


    //EDIT THESE VARS
    $bgcolor = "black";
    $bordercolor = "red";
    $height = "200";
    $width = "200";
    $font = "verdana";
    $fontcolor = "red";
    $linkcolor = "#CC0000";
    $linkhover = "red";
    $inputtext = "red";
    $inputbackground = "#000000";
    $inputborder= "#FF0000";



    //DONT EDIT
    echo "<html><head>\n"
    ."<style type=text/css><!-- input{background-color:$bgcolor;font-color:$fontcolor;font-family:$font;font-size:10px;} --></style></head>\n"
    ."<style type=text/css>\n"
    ."<!--\n"
    ."a:link.taglink{color:$linkcolor;font-family:$font;}\n"
    ."a:visited.taglink{color:$linkcolor;font-family:$font;}\n"
    ."a:hover.taglink{color:$linkhover;font-family:$font;}\n"
    ."input.tagput{color:$inputtext;font-family:$font;background-color:$inputbackground;border-color:$input-border;border-style:solid;border-width:1}\n"
    ."-->\n"
    ."</style>\n"
    ."<body bgcolor=$bgcolor>\n"
    ."<center>\n"
    ."<table border=0 cellpadding=0 cellspacing=0 bgcolor=$bgcolor>\n"
    ."<tr><td colspan=2>";echo "<table border=0 cellpadding=0 cellspacing=0 bgcolor=$bgcolor>\n"
    ."<tr><td>\n";echo "<table border=1 cellpadding=0 cellspacing=0 bordercolor=$bordercolor><tr><td bordercolor=$bgcolor>\n"
    ."<ilayer name=\"scroll1\"><div id=\"scroll3\" style=\"width:$width;height:$height;background-color:$bgcolor;overflow:auto\"><font face=$font color=$fontcolor size=1>\n";

    $talks_temp = file($talkdatafile);

    $talks = array_reverse($talks_temp);

    $showtalks = count($talks);

    if($sfeature == "1"){
    for ($t = 0; $t < $showtalks; $t++) {
    $talk_array = explode("|", $talks[$t]);
    echo "<b><a href=".$talk_array[3]." target=new class=taglink>".$talk_array[1]."</a>:</b> ";
    echo $talk_array[2]."<br>\n";
    }
    } else {
    for ($t = 0; $t < $showtalks; $t++) {
    $talk_array = explode("|", $talks[$t]);
    echo "<b>".$talk_array[1].":</b> ";
    echo $talk_array[2]."<br>\n";
    }
    }

    echo "</tr></td></table>\n"
    ."</textarea>\n"
    ."</div>\n"
    ."</font>\n"
    ."</td></tr>\n"
    ."</table>\n"
    ."</table>\n"
    ."<table cellpadding=0 cellspacing=0><tr><td>\n"
    ."<form action=\"".$PHP_SELF."\" method=\"post\"><font face=$font color=$fontcolor size=1>Name:\n"
    ."<td><input type=\"text\" name=\"nick\" class=tagput>\n"
    ."<tr><td><font face=$font color=$fontcolor size=1>Message:<td><input type=\"text\" name=\"stuffsaid\" class=tagput><br>";

    if($sfeature == "1"){
    echo "<tr><td><font face=$font color=$fontcolor size=1>Site:<td><input type=\"text\" name=\"personsite\" value=\"http://\" class=tagput><br>";
    } else {
    echo "<!-- -->";
    }

    echo "</table><input type=\"submit\" name=\"tagit\" value=\"Submit\" class=tagput>\n"
    ."<input type=\"hidden\" name=\"action\" value=\"talk\">\n"
    ."</form>\n"
    ."</font>\n"
    ."</body>\n"
    ."</html>";
    }


    tg($action, $nick, $stuffsaid, $personsite);

    /* made by dan - ice-on-fire.net */
    ?>
    grazie

  5. #5
    Guest

    Predefinito

    Qui:

    echo "<html><head>
    <title>TUO TITOLO</title>\n"
    ."<style type=text/css><!-- input{background-color:$bgcolor;font-color:$fontcolor;font-family:$font;font-size:10px;} --></style></head>\n"

  6. #6
    Guest

    Predefinito

    grazie mille

  7. #7
    L'avatar di heracleum
    heracleum non è connesso Utente storico
    Data registrazione
    21-01-2004
    Messaggi
    3,333

    Predefinito

    eheh esattamente la riga dopo dove c'è scritto:
    "//DONT EDIT"
    =
    "non modificare"

    comunque in questo caso la modifica è proprio il caso di farla.

    Anzi direi che i programmatori potevano aggiungere nel pezzo:
    //EDIT THESE VARS
    ...

    una riga tipo:
    //EDIT THESE VARS
    $title = "scrivi qui il titolo";

    e poi sotto prevedevano qualcosa tipo:
    "...<title>$title</title>..."

    sarebbe stato più elegante, vabè.. niente di grave.
    Avvertimento: richiedere in privato questioni tecniche produrrà inevitabilmente una supercazzola prematurata come risposta. (5 served)

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •