Visualizzazione risultati 1 fino 3 di 3

Discussione: problema con include

  1. #1
    Guest

    Predefinito problema con include

    Ciao a tutti... io ho il seguente pezzo di codice che mi genera in php un blocco di tabelle per un tot di valori compresi nelle variabili $fetch_frasi[1] (un altro script se le va a ricavare sul server...)

    il mio problema è che dove vi è la scritta NEWS (che ho cercato di evidenziare) ci deve andare un include('ok.php')

    come posso fare???

    Codice PHP:
    $frasi .= "<table width=\"480\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
    <tr>
    <td height=\"20\" colspan=\"3\" align=\"center\"><img src=\"img/testamiddle.png\" width=\"485\" height=\"20\" /></td>
    </tr>
    <tr>
    <td width=\"83\" height=\"20\" align=\"center\" background=\"img/news_data.png\" bgcolor=\"#CCCCCC\"><span class=\"style1\">
    {$fetch_frasi[3]}</span></td>
    <td width=\"26\" bgcolor=\"#CCCCCC\">&nbsp;</td>
    <td width=\"376\" bgcolor=\"#CCCCCC\"><div align=\"left\"><strong>
    {$fetch_frasi[1]}</strong></div></td>
    </tr>
    <tr>
    <td colspan=\"3\" align=\"center\" bgcolor=\"#76979E\"><table width=\"485\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
    <tr>
    <td width=\"485\" bgcolor=\"#76979E\"><div align=\"center\">
    <table width=\"450\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
    <tr>


    <td><p align=\"justify\"> NEWS </p></td>


    </tr>
    </table>
    </div></td>
    </tr>
    </table></td>
    </tr>
    <tr>
    <td colspan=\"3\" bgcolor=\"#CCCCCC\"><div align=\"right\">Scritto da
    {$fetch_frasi[2]}</div></td>
    </tr>
    <tr>
    <td height=\"10\" colspan=\"3\" background=\"img/testasotto.png\">&nbsp;</td>
    </tr>
    </table>
    "
    ;



    echo
    $frasi;
    ringrazio in anticipo

  2. #2
    L'avatar di sevenjeak
    sevenjeak non è connesso AlterGuru
    Data registrazione
    25-10-2007
    Residenza
    Roma
    Messaggi
    1,769

    Predefinito

    Credo che ti basta semplicemente modificare il codice cosi:

    Codice PHP:
    $frasi .= "<table width=\"480\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
    <tr>
    <td height=\"20\" colspan=\"3\" align=\"center\"><img src=\"img/testamiddle.png\" width=\"485\" height=\"20\" /></td>
    </tr>
    <tr>
    <td width=\"83\" height=\"20\" align=\"center\" background=\"img/news_data.png\" bgcolor=\"#CCCCCC\"><span class=\"style1\">
    {$fetch_frasi[3]}</span></td>
    <td width=\"26\" bgcolor=\"#CCCCCC\">&nbsp;</td>
    <td width=\"376\" bgcolor=\"#CCCCCC\"><div align=\"left\"><strong>
    {$fetch_frasi[1]}</strong></div></td>
    </tr>
    <tr>
    <td colspan=\"3\" align=\"center\" bgcolor=\"#76979E\"><table width=\"485\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
    <tr>
    <td width=\"485\" bgcolor=\"#76979E\"><div align=\"center\">
    <table width=\"450\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
    <tr>


    <td><p align=\"justify\"> "
    . include('ok.php') . " </p></td>


    </tr>
    </table>
    </div></td>
    </tr>
    </table></td>
    </tr>
    <tr>
    <td colspan=\"3\" bgcolor=\"#CCCCCC\"><div align=\"right\">Scritto da
    {$fetch_frasi[2]}</div></td>
    </tr>
    <tr>
    <td height=\"10\" colspan=\"3\" background=\"img/testasotto.png\">&nbsp;</td>
    </tr>
    </table>
    "
    ;



    echo
    $frasi;
    Ho semplicemente mezzo il punto per concatenare la stringa con la funzione, successivamente concatenata ad un'altra stringa
    Ultima modifica di sevenjeak : 17-03-2010 alle ore 14.51.32

    Sevenjeak
    Software developer and much more

  3. #3
    Guest

    Predefinito

    risolto spaccando il tutto in due echo e fra i due echo inserendo l'include...

    grazie mille
    Ultima modifica di punkrosteeny : 17-03-2010 alle ore 16.38.49

Regole di scrittura

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