<hr>Codice PHP:
<?php
##############
#ESEMPIO ESATTO#
##############
((true)?((true)?print '1':'2'):'2');
?>
Come faccio a inserire qualcosa che abbia il punto e virgola all'interno dell'operatore truth?Codice PHP:
<?php
#############
#ESEMPIO ERRATO#
#############
((true)?((true)?print '1'; print '2':'2'):'2');
?>