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

&lt;nowiki&gt; Hello &lt;?php function yourName() { echo &quot;Alvin Nguyen\n&quot;; } yourName(); ?&gt; &lt;/nowiki&gt;

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

-- Feb 10 In-Class Exercise Thread

Hello &lt;?php function yourName() { echo &quot;Paaras&quot;; } yourName(); ?&gt;

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

-- Feb 10 In-Class Exercise Thread

Hello &lt;?php function yourName(n) { echo n; } yourName(&quot;Mustafa Yesilyurt&quot;); ?&gt;

Hello <?php function yourName($n) { echo $n; } yourName("Mustafa Yesilyurt"); ?>

-- Feb 10 In-Class Exercise Thread

Hello &lt;?php function yourName() { echo &quot;Justin Chang&quot;; }

yourName(); ?&gt;

Hello <?php function yourName() { echo "Justin Chang"; } yourName(); ?>

-- Feb 10 In-Class Exercise Thread

Hello, &lt;?php function yourName() { echo &quot;Austin Anderson&quot;;} yourName(); ?&gt;

Hello, <?php function yourName() { echo "Austin Anderson";} yourName(); ?>

-- Feb 10 In-Class Exercise Thread

Hello, &lt;?php function yourName() { echo &quot;William Wang&quot;; } yourName(); ?&gt;

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

-- Feb 10 In-Class Exercise Thread

Hello &lt;?php function yourName() { echo &quot;Christopher\n&quot;; } yourName();

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

-- Feb 10 In-Class Exercise Thread

Hello&lt;?php function yourName() { echo &quot;Srilekha&quot;; }

yourName(); ?&gt;

Hello<?php function yourName() { echo "Srilekha"; } yourName(); ?>
[ Next ]
X