PHP expert |
|
Marten, met 'true' schiet ik niks op -> Zoals ik al zei ik wil dat de geparsede hap in de var komt.
Edit Verkeerd gelezen, nu ie op false staat werkt ie ty!
Edit2
<?php
function php($vInput)
{
$var = '
<table style=\"width: 500px; height: 0px; border: 1px solid #DDDDDD;\" cellspacing=\"0\">
<tr>
<td style=\"width: 40px; background-color: #EEEEEE;\">
<span style=\"font-family: courier new; font-size: 10pt;\">';
$vCheckRows = $vInput;
$iPieces = explode("\n", $vCheckRows);
$iRules = count($iPieces);
$i = 1;
while($i)
{
if($i-1 == $iRows)
{
break;
}
else
{
$var .= $i.'<br />';
}
$i++;
}
$var .= '</span>
</td>
<td style=\"width: 460px; background-color: #FFFFFF;\">';
$var .= highlight_string($vCheckRows, true);
$var .='</td>
</tr>
</table>';
return $var;
}
?>
<?php function php($vInput) { $var = ' <table style=\"width: 500px; height: 0px; border: 1px solid #DDDDDD;\" cellspacing=\"0\"> <tr> <td style=\"width: 40px; background-color: #EEEEEE;\"> <span style=\"font-family: courier new; font-size: 10pt;\">'; $vCheckRows = $vInput; $iPieces = explode("\n", $vCheckRows); $iRules = count($iPieces); $i = 1; while($i) { if($i-1 == $iRows) { break; } else { $var .= $i.'<br />'; } $i++; } $var .= '</span> </td> <td style=\"width: 460px; background-color: #FFFFFF;\">'; $var .='</td> </tr> </table>'; return $var; } ?>
DIt geeft mij toch nog een hoop problemen
1. Boven deze tabel komen ineens een stuk of 6 lege regels
2. Tussen elke regel van het script komt 1 regel
3. Zodra er een " <- double quote wordt gebruikt in het script wordt de rest van de code erna rood .. (het botst -> hoe verhelp ik dat)
Wie kan me helpen? |