0
for ($i=0; $i<=$lines; $i++) 
{
    //get each line and exlplode it..
    $part = explode('|', $file[$i]);

    //now start printing ..
    echo'<tr>

            <td width="20%">'.$part[0].'</td>

            <td width="20%">'.$part[1].'</td>

            <td width="20%">'.$part[2].'</td>

            <td width="20%">'.$part[3].'</td>

            <td width="20%">'.$part[4].'</td>

        </tr>';
}

これは私のコードです。テキスト ファイルから読み取り、テーブルに展開されますが、ここで少し問題があるため、これをリンクする必要があります。

<td width="20%">'.$part[2].'</td>

.$part[2].はファイルからの単なる単語ですがwww.somesite.com/?q=、最後に There のようなクエリがあります。それが必要です

ファイルからの単語

その種のコードは私にはうまくいきませんでした <td width="20%"> <a herf='www.somesite.com/?q=''.$part[2].'> '.$part[2].' </a> </td>

私は本当にこれについていくつかの助けが必要です...

<?php

//first, get the file...

$file = file('req.txt');



//now count the lines ..

$lines = count($file);



//start the table here..

echo'<table border="2" width="100%">';

echo'<tr>

              <td width="20%">Naslov</td>

              <td width="20%">Vrsta</td>

              <td width="20%">IP</td>

              <td width="20%">Dodano (DD.MM.YY - HH.MM)</td>

              <td width="20%">Status</td>
         </tr>';


//start the loop to get all lines in the table..

for ($i=0; $i<=$lines; $i++) {



//get each line and exlplode it..

  $part = explode('|', $file[$i]);

//now start printing ..

  echo'<tr>

              <td width="20%">'.$part[0].'</td>

              <td width="20%">'.$part[1].'</td>

              <td width="20%">'.$part[2].'</td>

              <td width="20%">'.$part[3].'</td>

              <td width="20%">'.$part[4].'</td>
         </tr>';

}



//close the table so HTML wont suffer :P

echo'</table>'; 




?>

これはこれを生成するはずですが、IP列はリンクである必要があります... 最終製品

4

2 に答える 2