Web Design And Programming Pt 1 PHP

Web Design and ProgrammingI have received tons of requests for tutorials. So, I’ve decided to create a massive tutorial that answers them all. In this tutorial I’ll focus on Web Design and Programming using all of the tools required. You should check out my Learn HTML Tutorial if you haven’t ahead of time.

I’ll continue this tutorial, with your input, until you can do pretty much anything in Web Design and Programming. Leave questions and comments below, because you are going to totally control everything I cover here.

I’ll start off with the basics of PHP and move on from there with tons of examples. Of course, all of the code used will follow the video.

All the Code from the Video

<html>
<head>
<title><?php echo “Website Title”;?></title>
</head>
<body>
<?php

// You can use short tags but it is not recommended doesn’t work in 6
# You can also comment code like this
/* Here is a
multiline comment
*/
echo “<p>Random Text</p>”;
print(“<p>You can print with braces</p>”);
print “<p>or without
them!</p>”;

$randVar = “Cats”;
echo “<p>”, $randVar, ” are funny</p>”;

printf(“<p>My name is %s I’m %d years old and
pi is equal to %.2f</p>”, ‘Derek’, 35, 3.14);

// Variables must start with a $ then letter or _ and then numbers
// Variables are case sensitive & don’t require definition before use

$boolEx1 = false; // 0 or false equals false
$boolEx2 = 1; // true equals any number but 0

$intEx1 = -234; // Max size normally 2^31 or 2^63

$floatEx1 = 3534.14;

echo “<p>Cost: $”,number_format($floatEx1,2), “</p>”;

// Arithmetic Operators: + – * / % ++ –

$firstName = “Doctor”;
$lastName = “Who”;

$wholeName = $firstName . ‘ ‘ . $lastName;
printf(“<p>His name is %s</p>”,$wholeName);

define(‘ACONSTANTVAR’, 2345);

echo “A constant is equal to ” . ACONSTANTVAR . “<br />”;

echo “How do quotes differ $wholeName<br />”;
echo ‘How do quotes differ $wholeName<br />’;

/* Escaped Characters in double quotes \” \’ \\ \n \r \t \$ */

$float2Int = (int) $floatEx1;
echo $float2Int, “<br />”;

/*
(array)
(bool)
(int64)
(object)
(float)
(double)
(string)
*/

$strNum = “28″;
echo $strNum * $floatEx1, “<br />”;

echo gettype($strNum), “<br />”;
echo is_string($strNum), “<br />”;

/* is_array() is_bool() is_float() is_integer() is_null() is_object()

?>
</body>
</html>

28 Responses to “Web Design And Programming Pt 1 PHP”

  1. heisamit says:

    Just stumbled on your videos accidentaly…but have to admit that you’ve really got some great stuff going on in these videos..Thanks for the posts

  2. bla says:

    i agree, just watched the first vid and now i’m gonna watch the rest :D i like it how you go through all of it very quickly instead of the boring slow talk like most of the tutorials :)

    • admin says:

      Thanks for taking the time to show your appreciation :D I definitely have a pretty original style. Some people like it while others don’t. I’m glad it works for you

  3. Amal says:

    First, I’d like to say your tutorials are great. They’ve helped so much. The format is great too. I was wondering if there was anyway I could download all of the video tutorials for a given section.

    thanks,
    Amal

  4. Bobby Gerez says:

    Hi Sir Derek I didn’t find your regular expression article only a video to where this one suppose to be posted.

    I just want to ask how to limit 9 numbers in regular expressions but I expect that it must contain at least a number so I come up with this but it doesn’t work that way. Thanks

    if (preg_match(“%[0-9]{1,9}%”, $searchid)){
    //execute codes
    }
    else {
    //execute codes
    }

  5. Kaustubh says:

    This a great stuff! What I like best is that videos are fast paced. Keep it up!

    Suggestion – Include navigation aids on the page to allow users to browse easily from one video of series to another.

  6. karan says:

    Hi,Really your videos looks great..I am very much inspired by yours and want to create website (programming in PHP) and started creating..but i was stuck in coding php for image slideshow for my website.Hoping help from you.
    Thanks in advance!
    once again, your videos are very much helpful..thanks for the posts..:)

  7. Anonymous says:

    your tutorials save me always. Thanks a lot!

    P.S
    can you zip all your exercise file sir derkbanas so that we can easily it to download..

  8. maha says:

    great tutorial.can you please tell me in which tutorial you teach how to retrieve data from database .

  9. sarrarov says:

    Hello Admin
    I would like to ask you about what SQL program do you use?

  10. Alex says:

    Thanks. But the videos have no download links.
    How can one download the videos and watch offline?
    Thank u for your good works.
    I will certainly donate to this project soon.

    I am actually learning web design right now in India.
    I was searching for any youtube video tutorials on javascript, and I eventually stumbled on your site. You actually have some great resources. Pls well done.

    • Derek Banas says:

      Thank you very much :) I’m glad you enjoy the videos. I can’t make the videos available for download directly because I can’t do that with the hosting account I have. I can’t afford a dedicated server.

      Please don’t feel obligated to donate. I am very happy that people find my videos useful. That is all I ask for

  11. Sayed Ali Raza says:

    A.O.A
    i am from Pakistan and i always want to become a programmer i was wandering on net for tutorials but never got something which can help me..
    and now i hit you web and guess what??
    i got what i was looking for.. i just saw 5 vids of php and i am gonna watch all.
    keep it up hope you will let them watch us free for ever..
    may Allah bless you..

    • Derek Banas says:

      Thank you very much :) I’m very happy to be able to help people all over the world. It is very gratifying for me. Feel free to ask questions and I’ll always try to help. May God bless you and your family as well

  12. SA says:

    still looking forward to a reply :)

  13. admin says:

    I’m sorry, but I didn’t get the first message

  14. SA says:

    This was my first message…

    “Great tuts…really really good stuff…You are doing really amazing job… I have a question for you.
    I want to access file modified time I am using filemtime() for this purpose.
    The problem I am having is that it shows the time the file was modified on the server. (Server time is 12 hour behind my local time) So can please help me sort this thing out… Looking forward for your reply…
    Regards.”

    P.S
    Happy New Year

  15. admin says:

    You can’t get the clients local time using PHP as far as I know. You could however use the following with javascript new Date().getTimezoneOffset() * -1

    I hope that helps. Happy New Year!

  16. SA says:

    Thank you for your reply.
    I haven’t tried your solution yet instead I used date_default_timezone_set(); php function to set my local time zone.

  17. admin says:

    You’re very welcome :) JavaScript is the way to go as far as I can think of at this point

Leave a Reply

Your email address will not be published.

You may use these HTML tags and attributes: <a href="" title="" rel=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Google+