Skip to main
WritePHPOnline
- Start write and run your php code online
Editor
PHP Tutorial
Crontab Generator
<?php
$fruit = 'apple'; // with indentation if($fruit == 'apple') { echo "Yes, its Apple
"; } else { echo "No, it's not
"; } // without indentation if($fruit == 'apple'){echo "Yes, its Apple
";}else{echo "No, it's not
";}
$fruit = 'apple'; // with indentation if($fruit == 'apple') { echo "Yes, its Apple
"; } else { echo "No, it's not
"; } // without indentation if($fruit == 'apple'){echo "Yes, its Apple
";}else{echo "No, it's not
";}
Hello World!