Jump to content

Recommended Posts

Posted

You learn this things in logic at 2-3gymnasiou in greece. and probably faster in the rest of the world. 

If know only the syntax, you know nothing.

Posted

If know only the syntax, you know nothing.

I mean in school we learn the logic, we make the practice on a board with a marker with a fake programing langue. so its the other way around you know the logic but not the syntax. 

Posted

You learn this things in logic at 2-3gymnasiou in greece. and probably faster in the rest of the world. 

What?

In the school here on Greece, people learn something like this? Are you sure?

 

Because before 10 years when I was at school, I learned only how to use the mouse. lol

 

Btw, you're wrong anyway..

You learned some fake values on Microsoft Excel. :lol:

Posted

I didn't learn anything :(

 

 

xaxa  :D

 

What?

In the school here on Greece, people learn something like this? Are you sure?

 

Because before 10 years when I was at school, I learned only how to use the mouse. lol

 

Btw, you're wrong anyway..

You learned some fake values on Microsoft Excel. :lol:

 

Come on, Snoopi is right. We have learned some basics.

:P

Posted

xaxa  :D

 

 

Come on, Snoopi is right. We have learned some basics.

:P

Seriously, it's confusing :P

PHP is my first touch to the programming and I can say that I know it very deeply, but this tutorial is confusing me :lol:

 

Also an array can be defined like this for ease:

<?php

$anArray = ['one', 'two', 'three'];

echo '<pre>' . print_r($anArray, true) . '</pre>';

// Dynamically added value in the array
$anArray[] = 'four';

echo '<pre>' . print_r($anArray, true) . '</pre>';

$anotherArray = [
    'first' => 'one',
    'second' => 'two',
    'third' => 'three'
];

echo '<pre>' . print_r($anotherArray, true) . '</pre>';

// Dynamically added position in the associative array
$anotherArray['fourth'] = 'four';

echo '<pre>' . print_r($anotherArray, true) . '</pre>';
Posted

What?

In the school here on Greece, people learn something like this? Are you sure?

 

Because before 10 years when I was at school, I learned only how to use the mouse. lol

 

Btw, you're wrong anyway..

You learned some fake values on Microsoft Excel. :lol:

Yes loops is the first thing. i remember at 2th gymnasium we used a program with an ant and we made her move in a panel, and we used loops there also we learn to think in algorithmic way.also in 2th high school we used a fake programing langue to learn more about strings, loops, arrays, tables and such kind of things. 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...