Visualizzazione dei risultati da 1 a 4 su 4
  1. #1
    Utente di HTML.it L'avatar di nourdine
    Registrato dal
    Nov 2005
    Messaggi
    1,130

    lo script non stampa niente

    come mai sto script non mi stampa niente?

    codice:
    <?php
    
    $num_head = rand(1,4);
    
    $stuff = <<<EOT
    
    <style type=text/css>
    
    #header a, #header a:link, #header a:active {
    display: block;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    width: 765px;
    height: 180px;
    background: #eee url(http://www.xxx.com/skins/default/images/header" . $num_head . ".jpg) no-repeat right top;}   
    
    #header a:hover {background-repeat: no-repeat; background-position: right -200px;} 
    
    </style>
    
    EOT;
    
    echo "$stuff";
    
    ?>

  2. #2
    Utente di HTML.it
    Registrato dal
    Oct 2005
    Messaggi
    272
    Cosa ti aspettavi che stampasse scusa? La parte compresa tra <style>...</style>?!

  3. #3
    Utente di HTML.it L'avatar di Il_Drugo
    Registrato dal
    May 2006
    Messaggi
    1,220
    Ma scusa..non puoi fare semplicemente cosi?

    Codice PHP:
    <?php

    $num_head 
    rand(1,4);

    $stuff 

    "<style type=text/css>

    #header a, #header a:link, #header a:active {
    display: block;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    width: 765px;
    height: 180px;
    background: #eee url(http: //www.xxx.com/skins/default/images/header" 
    $num_head ".jpg) no-repeat right top;}   

    #header a:hover {background-repeat: no-repeat; background-position: right -200px;} 

    </style>"
    ;

    echo 
    "$stuff";

    ?>

  4. #4
    Utente di HTML.it
    Registrato dal
    Oct 2005
    Messaggi
    272
    Rettifico forse avevo capito male: a video non ti stamperà mai niente, nel codice HTML ovviamente sì.
    solo che questa riga la scriverei così:

    Codice PHP:
    background#eee url([url]http://www.xxx.com/skins/default/images/header[/url]{$num_head}.jpg) no-repeat right top;} 

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.