HTML interesse |
|
Ik heb een chat, in die chat heb ik een botje gemaakt. Als de bot een command uitvoerd dan wordt dat weggeschreven in een commands.php bestand. Het probleem is, dat hij alles vlak na elkaar met !-tekens en spaties scheidt. omdat het voor mij handiger zou zijn om het uit te lezen heb ik het volgende gemaakt:
<?php
$text = include ("commands.php");
$text = preg_replace('/\s\s+/', ' ', $input);
$text = str_replace(" ", "<br>", $text);
echo htmlentities($text, true);
?>
<?php $text = include ("commands.php"); ?>
maar dit werkt niet..
|