2021-02-10

Feb 10 In-Class Exercise Thread.

Please post your solutions to the Feb 10 In-Class Exercise to this thread.
Best,
Chris
Please post your solutions to the Feb 10 In-Class Exercise to this thread. Best, Chris

-- Feb 10 In-Class Exercise Thread
<?php
function yourName(){
	echo "Kevin Schumacher\n";
} ?>
Hello
<?php
yourName();
(Edited: 2021-02-10)
<?php function yourName(){ echo "Kevin Schumacher\n"; } ?> Hello <?php yourName();

-- Feb 10 In-Class Exercise Thread
Hello
(Edited: 2021-02-10)
<nowiki> Hello <?php function yourName() { echo "Alvin Nguyen\n"; } yourName(); ?> </nowiki>

-- Feb 10 In-Class Exercise Thread
 Hello <?php
 function yourName()
 {
     echo "Paaras";
 }
 yourName();
 ?>
 
(Edited: 2021-02-10)
Hello <?php function yourName() { echo "Paaras"; } yourName(); ?>

-- Feb 10 In-Class Exercise Thread
Hello <?php function yourName($n) {
	echo $n;
} yourName("Mustafa Yesilyurt"); ?>
Hello <?php function yourName($n) { echo $n; } yourName("Mustafa Yesilyurt"); ?>

-- Feb 10 In-Class Exercise Thread
Hello <?php function yourName() {
	echo "Justin Chang";
}
yourName(); ?>
Hello <?php function yourName() { echo "Justin Chang"; } yourName(); ?>

-- Feb 10 In-Class Exercise Thread
Hello, <?php function yourName() { echo "Austin Anderson";} yourName(); ?>
Hello, <?php function yourName() { echo "Austin Anderson";} yourName(); ?>

-- Feb 10 In-Class Exercise Thread
Hello, <?php function yourName() {
   echo "William Wang";
} yourName(); ?>
(Edited: 2021-02-10)
Hello, <?php function yourName() { echo "William Wang"; } yourName(); ?>

-- Feb 10 In-Class Exercise Thread
 Hello
 <?php
 function yourName()
 {
 echo "Christopher\n";
 } yourName();
(Edited: 2021-02-10)
Hello <?php function yourName() { echo "Christopher\n"; } yourName();

-- Feb 10 In-Class Exercise Thread
Hello<?php function yourName() {
  echo "Srilekha";
}
yourName(); ?>
Hello<?php function yourName() { echo "Srilekha"; } yourName(); ?>
[ Next ]
X