xoaxdotnet
xoaxdotnet
  • 331
  • 26 436 141
PHP Lesson 8: Simple Array Usage
xoax.net/
Lesson Page:
xoax.net/sub_php/crs_core/Lesson8/
Reference:
xoax.net/sub_php/ref_core/
The purpose of this lesson is to introduce the concept of arrays and to show the various syntax used for initializing, filling them with data, and then accessing that data from them. An array is object that holds a collection of data items. In PHP, arrays can hold multiple types of data items, unlike some other languages.
Copyright 2022 XoaX.net LLC
Переглядів: 6 232

Відео

PHP Lesson 7: Numerical Operations
Переглядів 1,3 тис.2 роки тому
xoax.net/ Lesson Page: xoax.net/sub_php/crs_core/Lesson7/ Reference: xoax.net/sub_php/ref_core/ This lesson explains how various numerical operations are applied in PHP. These operations include the basic arithmetic operators, the assignment operators, the increment and decrement operators, and the random number generator. Copyright 2021 XoaX.net LLC
PHP Lesson 6: Conditionals
Переглядів 2532 роки тому
xoax.net/ Lesson Page: xoax.net/sub_php/crs_core/Lesson6/ Reference: xoax.net/sub_php/ref_core/ This lesson explains how the various kinds of conditional statements operate in PHP. A conditional is a command that executes a portion of code under certain conditions. The conditional statements that we look at here are the if, else if, else, the ternary operator, and the spaceship operator. Copyri...
CSS Lesson 8: Float and Clear
Переглядів 2172 роки тому
xoax.net/ Lesson Page: xoax.net/sub_css/crs_core/Lesson8/ CSS Reference Page: xoax.net/sub_css/ref_core/ This CSS lesson explains how to position HTML elements via the float and clear properties. Float and clear provide us with a method of positioning that is different from the position property. Here, we will explain how these properties can be used to affect the position of elements. Copyrigh...
PHP Lesson 5: Boolean Expressions
Переглядів 2522 роки тому
xoax.net/ Lesson Page: xoax.net/sub_php/crs_core/Lesson5/ Reference: xoax.net/sub_php/ref_core/ This lesson presents the basis for programmatic decision making in PHP via boolean expressions. A boolean expression is an expression made up of boolean values that are joined together by logical operators. Those boolean values may be generated by comparisons that performed via comparison operators. ...
PHP Lesson 4: Basic Data Types
Переглядів 2032 роки тому
xoax.net/ Lesson Page: xoax.net/sub_php/crs_core/Lesson4/ Reference: xoax.net/sub_php/ref_core/ This lesson explains the four basic data types of PHP and how their conversions are handled: boolean, int, floating-point, and string. When a variable is displayed inside a string, the value of the variable is automatically converted to a string type. Automatic conversions occur in PHP under other va...
PHP Lesson 3: String Literals
Переглядів 5122 роки тому
xoax.net/ Lesson Page: xoax.net/sub_php/crs_core/Lesson3/ Reference: xoax.net/sub_php/ref_core/ This lesson describes the four string literals that are used in PHP. These four literals give us different methods for representing strings of characters in a program for the sake of convenience. Some are better for displaying variable names. Some are better for variable values. Finally, some are bet...
PHP Lesson 2: Using Variables
Переглядів 1902 роки тому
xoax.net/ Lesson Page: xoax.net/sub_php/crs_core/Lesson2/ Reference: xoax.net/sub_php/ref_core/ The purpose of this lesson is to explain how variables are used in PHP. PHP variable names are always preceded by a dollar sign. Variables are not strongly typed, as they are in many other languages. In fact, the type of a variable can be changed at any time to any other type. To help understand how ...
PHP Lesson 1: Creating Web Pages in PHP
Переглядів 2662 роки тому
xoax.net/ Lesson Page: xoax.net/sub_php/crs_core/Lesson1/ Reference: xoax.net/sub_php/ref_core/ The purpose of this lesson is to explain how a web server processes PHP to create a web page when one is requested. Before learning PHP, you should have a solid grasp of HTML and CSS; you should watch our HTML and CSS courses if you need to to learn them. Also, you should have XAMPP installed and kno...
PHP Lesson 0: Setting up Apache for PHP
Переглядів 2812 роки тому
xoax.net/ Lesson Page: xoax.net/sub_php/crs_core/Lesson0/ Reference: xoax.net/sub_php/ref_core/ The purpose of this tutorial is to demonstrate how to set up the Apache web server to run PHP programs. To follow along with this video, you will need to have XAMPP installed. If you have not already installed XAMPP, follow the directions in our video entitled "How to install XAMPP for PHP" before co...
How to Install XAMPP for PHP
Переглядів 2332 роки тому
xoax.net/ Lesson Page: xoax.net/sub_web/crs_dev/install_xampp/ The purpose of this tutorial is to demonstrate how to install XAMPP so that it can be used to run PHP programs. The XAMPP installation contains several components, but the primary one that we are concerned with is the Apache web server which will be used to run PHP programs. Copyright 2021 XoaX.net LLC
CSS Lesson 7: Positioning
Переглядів 1862 роки тому
xoax.net/ Lesson Page: xoax.net/sub_css/crs_core/Lesson7/ CSS Reference Page: xoax.net/sub_css/ref_core/ This lesson demonstrates how to position HTML elements via the position property. There are five different values for the position property: static, absolute, relative, fixed, and sticky. This lesson will examine how each of these positioning methods functions. Copyright 2021 XoaX.net LLC
C++ Console Lesson 1: Creating a Console Application in VS 2019
Переглядів 5 тис.2 роки тому
xoax.net/ Lesson page: xoax.net/sub_cpp/crs_core/Lesson1/ In this C video tutorial, we show how to create an empty C project in Visual Studio 2019, add a .cpp file to the project, and compile a simple program. These steps will be used at the start of most of the remaining videos, but they will not be repeated. Copyright 2021 XoaX.net LLC
CSS Lesson 6: Box Model Sizing
Переглядів 1732 роки тому
xoax.net/ Lesson Page: xoax.net/sub_css/crs_core/Lesson6/ CSS Reference Page: xoax.net/sub_css/ref_core/ The last lesson described the CSS box model for HTML elements. This lesson explains how to size the regions of the box model. There is some complexity to this sizing, since we can set the sizes of each side of the box model individually. To allow this flexibility requires some intricacies th...
Math Challenge Problem #3
Переглядів 1772 роки тому
xoax.net/ This video gives a solution to the Putnam 2020 problem of finding the number of natural numbers N such 2020 divides N, N has at most 2020 decimal digits, and the decimal digits are a sequence of ones followed by a sequence of zeros. Copyright 2021 XoaX.net LLC
Math Challenge Problem #2
Переглядів 2112 роки тому
Math Challenge Problem #2
Math Challenge Problem #1
Переглядів 2892 роки тому
Math Challenge Problem #1
CSS Lesson 5: The Box Model
Переглядів 1942 роки тому
CSS Lesson 5: The Box Model
CSS Lesson 4: Handling Overflow
Переглядів 3872 роки тому
CSS Lesson 4: Handling Overflow
CSS Lesson 3: Units and Sizing
Переглядів 2353 роки тому
CSS Lesson 3: Units and Sizing
CSS Lesson 2: Color Specifications
Переглядів 2603 роки тому
CSS Lesson 2: Color Specifications
CSS Lesson 1: Inline Styles
Переглядів 2203 роки тому
CSS Lesson 1: Inline Styles
CSS Lesson 0: What is CSS?
Переглядів 2783 роки тому
CSS Lesson 0: What is CSS?
Atheist Deceptions: Where is God?
Переглядів 6963 роки тому
Atheist Deceptions: Where is God?
Atheist Deceptions: Can You Prove That God Exists?
Переглядів 1,3 тис.3 роки тому
Atheist Deceptions: Can You Prove That God Exists?
Analysis of The Tuft of Flowers by Robert Frost
Переглядів 1,3 тис.3 роки тому
Analysis of The Tuft of Flowers by Robert Frost
Development: How to Schedule a Task
Переглядів 4493 роки тому
Development: How to Schedule a Task
HTML Lesson 38: Pictures
Переглядів 2913 роки тому
HTML Lesson 38: Pictures
HTML Lesson 37: Space Game
Переглядів 3723 роки тому
HTML Lesson 37: Space Game
HTML Lesson 36: Using JavaScript
Переглядів 2013 роки тому
HTML Lesson 36: Using JavaScript

КОМЕНТАРІ

  • @catalinamiranda1827
    @catalinamiranda1827 9 днів тому

    I Love it

  • @hmmmidkkk
    @hmmmidkkk Місяць тому

    Before this i watched 10-20 videos about win32 api , but no one explained as clearly as you , btw this video was uploaded when i was 3 years old

  • @emd1178
    @emd1178 2 місяці тому

    And I must be, as he had been, - alone. Honestly such a beautiful line

  • @TestAccountUndetailed-dd7vp
    @TestAccountUndetailed-dd7vp 2 місяці тому

    Old but Gold

  • @ronshabi8830
    @ronshabi8830 3 місяці тому

    That was an extremely clear explanation, thank you!

  • @TeamDman
    @TeamDman 3 місяці тому

    Great video, thanks for sharing!

  • @1birdwatcherr
    @1birdwatcherr 3 місяці тому

    O_o

  • @tomyyoung2624
    @tomyyoung2624 4 місяці тому

    Yes script

  • @DonAsuquo
    @DonAsuquo 4 місяці тому

    too blurry for a video

    • @michaelhall4436
      @michaelhall4436 4 місяці тому

      It should be clear if you switch to 720p.

  • @user-qq8dp7pu5y
    @user-qq8dp7pu5y 5 місяців тому

    my man you are a genius

  • @mba2ceo
    @mba2ceo 5 місяців тому

    Y exclude the 3d code from web page ?

  • @jonah.donohue
    @jonah.donohue 6 місяців тому

    Let's say you have AnB but what if you have (AnB). What's the difference?

  • @blazmup3409
    @blazmup3409 7 місяців тому

    My american mind could not comprehend this. boring ahhhh poem.

  • @user-xg4bz5ud3t
    @user-xg4bz5ud3t 8 місяців тому

    wow, 14 years ago

  • @menderinseyoum1616
    @menderinseyoum1616 9 місяців тому

    Wow I appreciate it 🙏😊 please continue 😊

  • @RomanZBoss3.0
    @RomanZBoss3.0 9 місяців тому

    Please do Lesson 39

  • @shanksww
    @shanksww 10 місяців тому

    Qa3 lhamor

  • @elijahreal32
    @elijahreal32 10 місяців тому

    still works in vs 2022 :)

  • @shahzaibmirza1048
    @shahzaibmirza1048 11 місяців тому

    kabhi socha nahin tha sir ka lecture samjhne keliye 13 saal purani vid dekhni paregi

  • @RomanZBoss3.0
    @RomanZBoss3.0 11 місяців тому

    I’m sorry that you’re taking a break from uploading UA-cam videos this year.

  • @bennyandersen742
    @bennyandersen742 Рік тому

    I do this and nothing happens. I am using Borland CBuilder 10. What is wrong ?

  • @sadiyaahmad5032
    @sadiyaahmad5032 Рік тому

    Incredible explanation ☺

  • @mrmcwellium
    @mrmcwellium Рік тому

    This was made the day before I was born

  • @Leopar525
    @Leopar525 Рік тому

    At last someone explained it. I’m 38 and at last after so many years they failed to explain it at school I have a chance to go back and understand it. Thank you sir

  • @clemex_3659
    @clemex_3659 Рік тому

    Thx for the help !!!! From 2023

  • @juliotancredi7468
    @juliotancredi7468 Рік тому

    It is difficult to agree that no choice was taken. The poem clearly states that he took the second, and kept the first for another day.

    • @michaeljanuszewski1062
      @michaeljanuszewski1062 8 місяців тому

      I completely agree with you! The traveler studied one path for a while and then definitely took the second. It is unclear whether he studies the second path beforehand but that's not really important. The narrator of this video lost me when he claims the traveler is so indecisive that he takes neither. So what did he do, stand at the fork for days on end? Turn back? That makes no sense. I believe the poem is about the regret of never knowing whether the other path was ultimately better or worse than the path he chose so in his old age he plans to falsely justify his choice even though, at the time, the 2 paths were virtually identical. I'm guessing he plans to do this because it is such an important decision that he doesn't want to second guess himself years later which would drive him crazy.

  • @ArdiTheEnergeticBoy2009
    @ArdiTheEnergeticBoy2009 Рік тому

    Cool

  • @sevirajkumar4941
    @sevirajkumar4941 Рік тому

    Your video is nice. But, if want to more viewer then you'll have to speak in hindi.

  • @g-kats6331
    @g-kats6331 Рік тому

    Give up this nonsense called faith, including atheism, religions and philosophy. Just stay rational people. Rely only on what is known and discovered. You can add whatever you want to complete the vision of reality, but remember, whatever fairy tale you write will remain only an imagination. I'm not going to rely on imagination because I can't match it to reality anyway. Believing or not believing is a waste of time. Prophets are fools and clowns without knowledge. Just dig, discover and prove. The player and avatar analogy is wrong. The player explores the world outside the simulation. She starts a game with him. We don't know what happens after death. The afterlife is not our first life, but our second. In this concept, it's the other way around🤔

  • @avtem
    @avtem Рік тому

    What is the point of wide-characters if you still use English characters and values from the ascii table?

    • @zdspider6778
      @zdspider6778 10 місяців тому

      Maybe you want emojis. Which have their own Unicode values (code points). But if you only use English / Latin alphabet, using 'wchar_t' everywhere would just double the memory footprint of the C strings ('char' arrays) for no reason.

  • @RomanZBoss3.0
    @RomanZBoss3.0 Рік тому

    So, is that your first video ever? I hope so.

  • @Explorers448
    @Explorers448 Рік тому

    I am so glad that I found this video this is a live saver.

  • @ProgramEnginer
    @ProgramEnginer Рік тому

    Wow… so amazing!

  • @Creeperking-bw7wi
    @Creeperking-bw7wi Рік тому

    Only 31% of the population are christians shouldn't that be a reason for you imaginary friend to show up? Especially because most of the rest believes in "wrong" religions Also if your god can't show himself but only a representation where exactly is that representation? No your bedtime stories do not count because if they did Hindu bedtime stories would have to count too

  • @Creeperking-bw7wi
    @Creeperking-bw7wi Рік тому

    Then do it under possible logical conditions Existence of the bible is obviously not something you can use. There are many more popular religious texts all which you claim to be no evidence for the other religions so why should the bible count? As if most Christians have read the bible. "Suppresses all attempts to replicate or suppress it" - Are you familiar with the concept of other people? Christianity makes up 31% of the worlds population. Most of the rest believes in other religions... with their only holy religious texts... and they didn't replicate it they came up with it on their own... before Christianity was a thing... Christianity is only so popular because the people who believed in it were the once forcing others to convert to their religion. Basically everything you say in this video is "If so many people believe in it isn't that evidence it's true?" ... completely ignoring that around 70% of the population don't believe in it If not god where does it's power come from? -Where does the power of the religious texts of other religions come from? -Where does the power of flat earth come from? -Could it be that it's just human ignorance? -Could that also be the reason why the chance of a person being atheist increases the more intelligent the person is? What even is this point with divorce, etc.? That's just an argument against Christianity. Humans got intelligent enough to realize the harsh reality but it's too much for them so they invented religions which also explains why different ones popped up everywhere on the world. If there was a god we would expect a single one to pop of everywhere. People are being religious because the harsh reality is too much for them to handle and they have to flee into some imaginary world in order to not lose their mind. 6:40 You are picking examples from a group to attack a group I could name so many Christians who cheated on their partners. But if you call those people "not religious" because they didn't follow the values of the religion then why are you surprised? How are you even surprised at all? If your definition of a devout Christian is "doesn't divorce their partner" then you're obviously not gonna see divorces in those people because as soon as they get a divorce they aren't in that group anymore. How are you not noticing that there is a problem here? Check the divorce rates amongst people who take religion lightly and compare them to those of atheists and then we can have a talk. Do not realize that you are comparing a sub-group to an average? I can do the same. Atheists with strong moral values (as soon as you divorce you lose 90% of your "moral value" points) divorce less often than average Christians. CHRISTIANITY LEADS TO DIVORCE! And afterwards you are doing it again. "The closer one is to god the further he (not inclusive I see) is from evil". Sounds smart at first glance right? But how do you define evil? CHRISTIAN VALUES So your conclusion should be: The more christian you are the more you follow christian values. "The further one is from being vegan the further they are from evil" (with the definition that eating anything from animals = evil) "The further one is from being sexist the further they are from evil" (with the definition that being sexist (which the bible is) = evil) "The closer one is to human sacrifice the further they are from evil" (with the definition that human sacrifice = good) How often are you gonna repeat that argument "people who follow the rules of the bible divorce less often"? And not once did you notice that "follow the rules of the bible" INCLUDES NOT DIVORCING. "Amongst people who are against divorce divorce rates are incredibly low". Do you need studies to confirm that? Same with your other points. If you don't count someone who abuses drugs as a devout Christian then obviously drug abuse rates amongst devout Christians are low. Happier and mentally healthier: I usually hate movie references but have you watched matrix? You're happier living a lie but don't you want to rather see the truth? If choose happier but living a lie you could try getting into drug abuse. Why am I writing this? Because Christians try to push their values onto others. If they could just keep to themselves everything would be ok. But no they have to fight against women's rights, spread sexism and lies (as evolution is false). 7:58: Does the art and music of my brother count? Beautiful buildings which they could only do because they exploited the working class instead of some "faith". All they did was collect their money and make an order. What is boring about atheism? YOU CAN STILL DO THE SAME THINGS! Is that too hard to understand? Also the largest religious buildings are the pyramids which aren't exactly Christian... You presented no evidence besides misleading statistics. Christianity claims that all other religions are wrong even though it wasn't the first one. The existence of other religions, specially older ones, should make you skeptical. If it is so natural for "false" (by christian claim of it being the only right religion) religions to occur why isn't Christianity one of them? Also what god would create native Americans and then just not give them his set of rules on how to get into heaven? Should that contradict the "god loves you" claim by Christians? This video perfectly joins the average christian argument. "We should provide proof? Let's attack a few members of the opposing party! That should be proof enough!" Again prove it with logical assumptions. This is a challenge. If the only problem is that atheists don't allow any assumption then I hereby allow you to use any logical assumptions you want. Or just provide some logical evidence that isn't just a fancy way of phrasing "Christians are more christian than non christians" or that applies to every single religion.

  • @wiearlos8009
    @wiearlos8009 Рік тому

    hey thanks for the tutorial but 1 thing how do i change the dimensions of the picture?

  • @brandonfenske3282
    @brandonfenske3282 Рік тому

    ive refered to this video 5 times in the last 2 years. simply the best explanation

  • @edmundcowan9131
    @edmundcowan9131 Рік тому

    Blew it Made all the difference.

  • @danyalgholizadeh2879
    @danyalgholizadeh2879 Рік тому

    great video! <3

  • @Hili7672hdh
    @Hili7672hdh Рік тому

    2022 here

  • @leela5375
    @leela5375 Рік тому

    If we want to add this image not like to body, for a particular division if we want to add, then how to add that created element to that particular division? Can anybody help me? Plz

  • @BoardInTheHouseBGAplayer
    @BoardInTheHouseBGAplayer Рік тому

    this is all I needed. thank you

  • @dartm0
    @dartm0 Рік тому

    Isn't the if statement wrong? You should swap the numbers if J is greater than J +1

  • @xoaxdotnet
    @xoaxdotnet 2 роки тому

    'The fool says in his heart, “There is no God.”' (Psalm 14:1)

    • @g-kats6331
      @g-kats6331 Рік тому

      Yea. Bible says also that earth is flat. Or that one family sawed all species from flood by building a large boat. Any more bible "wisdom" quotes you have? Because I have plenty of silly onces. Beleaver or not christianity is a big mistake.

  • @normancherry8732
    @normancherry8732 2 роки тому

    When John said to Jesus, Rabbi, we have seen a man casting demons out in your name and we told him to stop because he was not one of us... in that passage, Jesus spoke in error at the point where he said; "anyone who is not against us is for us," but this statement is false because it is possible for someone to be not against someone and yet at the same time not be for them, let me put it this way, Jesus is found healing someone whose body is disfigured and a short distance away are two men observing Jesus, one of the men complained saying; look at this man Jesus, he's a fake and an attention seeker, what do you think of him? the other man replied; well... I don't know, I think he's doing something good, what! the other man gasped, are you saying you're for this Jesus? the other man responded; well no! I wouldn't say I'm for him, then you must be against him then, replied the other, no! nor am I against him, he said; I mean I'm not against him for healing people, but I'm not for him due to some of the things he has to say neither. So this statement, contrary to Jesus words that "anyone who is not against us is for us" is in fact a statement of error, but if Jesus had said, anyone is not against us is for us, then that would be grammatically correct, so to perceive Jesus as God come in the flesh, well that would leave much doubt about God's vocabulary, I mean, are we to imagine that God is that illiterate? that poorly phrased statement is very misleading and I can't see God either making a massive faux pas himself as God in the flesh, nor that He'd be so foolish in sending a half informed teacher to the world, there are other mistakes that Jesus makes that can be seen in scripture, ofcourse they are hidden from the non enquiring mind that just accepts whatever they're told verbatim by a church (every church denomination) that understands much less about the Bible than they're admitting, but while some things Jesus said were true, the emphasis on his words of error outweigh the truths he spoke.

  • @wengercleopatra2150
    @wengercleopatra2150 2 роки тому

    With that kind of wooing I’d give in

  • @adeosundeji362
    @adeosundeji362 2 роки тому

    it worked for me but I'm having a problem with positioning the image where I want. I can't seem to figure it out

  • @TheBuilder
    @TheBuilder 2 роки тому

    nice to see you're back making videos

  • @loucinci3922
    @loucinci3922 2 роки тому

    Good tutorial. I used all of these for St. Coleman's Italian Festival volunteer registration apps. So much fun creating the dashboards. Thanks for sharing

  • @raidkiller24enterprises6
    @raidkiller24enterprises6 2 роки тому

    cool nostalgic html