Difference between revisions of "PHP-and-MySQL/C2/Embedding-PHP/English-timed"
From Script | Spoken-Tutorial
Sandhya.np14 (Talk | contribs) |
|||
Line 7: | Line 7: | ||
|- | |- | ||
|00:14 | |00:14 | ||
− | |For example if I were to create Php tags and echo out my name here. | + | |For example, if I were to create '''Php tags''' and '''echo''' out my name here. |
|- | |- | ||
|00:23 | |00:23 | ||
− | |By running this , let's click on a file, we just get | + | |By running this, let's click on a file, we just get "Alex". |
|- | |- | ||
|00:30 | |00:30 | ||
− | |Now for example, I can embed HTML inside this and echo it out here to make Alex a little bolder. | + | |Now for example, I can embed HTML inside this and '''echo''' it out here to make "Alex" a little bolder. |
|- | |- | ||
|00:38 | |00:38 | ||
Line 19: | Line 19: | ||
|- | |- | ||
|00:45 | |00:45 | ||
− | |Let's start again, create an HTML page. I'm going to use this example | + | |Let's start again, create an HTML page. I'm going to use this example. |
|- | |- | ||
|00:52 | |00:52 | ||
− | |I will start a Php and a tag here. I echo out Alex and then come in outside the Php tags and add my bold here and my bold end after the ending Php tag | + | |I will start a '''Php''' and a '''tag''' here. I '''echo''' out "Alex" and then come in outside the '''Php tags''' and add my '''bold''' here and my '''bold end''' after the ending '''Php tag'''. |
|- | |- | ||
|01:13 | |01:13 | ||
− | |And it gives us the same result, nothing has changed even though I've refreshed the page | + | |And it gives us the same result, nothing has changed even though I've refreshed the page. |
|- | |- | ||
|01:20 | |01:20 | ||
− | |So, we can change that to underline and you can see that Alex is underlined. | + | |So, we can change that to underline and you can see that "Alex" is underlined. |
|- | |- | ||
|01:26 | |01:26 | ||
− | |So, we can do it either ways. It's up to you to use the HTML code inside the echo or not. But there are more uses to this. | + | |So, we can do it either ways. It's up to you to use the '''HTML code''' inside the '''echo''' or not. But there are more uses to this. |
|- | |- | ||
|01:39 | |01:39 | ||
− | |Now, if you do know HTML, you know the input tag is a template tag. | + | |Now, if you do know HTML, you know the '''input tag''' is a '''template tag'''. |
|- | |- | ||
|01:48 | |01:48 | ||
− | |So, let's say text and the name of this will be name and the value is going to be equal to Alex | + | |So, let's say text and the name of this will be '''name''' and the value is going to be equal to "Alex". |
|- | |- | ||
|01:56 | |01:56 | ||
− | | | + | |Let's '''refresh''' this and we see we've got a '''text box''' here with "Alex" inside. Now I want to use '''Php''' to grab the '''get''' variable header and put it inside this value of our input value. |
|- | |- | ||
|02:14 | |02:14 | ||
− | |Now, this is really useful in some cases like form submission and error checking where you want the posted variables to stay inside the value of each text box. | + | |Now, this is really useful in some cases like '''form''' submission and '''error''' checking where you want the posted variables to stay inside the value of each '''text box'''. |
|- | |- | ||
|02:30 | |02:30 | ||
− | |If you haven't seen the get tutorial already make sure you watch that. | + | |If you haven't seen the '''get''' tutorial already, make sure you watch that. |
|- | |- | ||
|02:38 | |02:38 | ||
− | |Now, bring this down a couple of lines, obviously we still run this code successfully because it works on similar line basis | + | |Now, bring this down a couple of lines, obviously we still run this '''code''' successfully because it works on similar line basis. |
|- | |- | ||
|02:48 | |02:48 | ||
− | |So, this you see here is exactly the same as that, you just have to force it down a bit and I'm going to create Php text here | + | |So, this you see here is exactly the same as that, you just have to force it down a bit and I'm going to create '''Php text''' here. |
|- | |- | ||
|02:58 | |02:58 | ||
− | |This is going to look a funny brown colour because we're working in Php highlighting and it's not really recognizing this type of highlighting | + | |This is going to look a funny brown colour because we're working in Php highlighting and it's not really recognizing this type of highlighting. |
|- | |- | ||
|03:08 | |03:08 | ||
− | |Ok, I'm just going to echo out Alex | + | |Ok, I'm just going to '''echo''' out "Alex". |
|- | |- | ||
|03:12 | |03:12 | ||
− | |Since this works on a single line basis, bring this all up on a single line. | + | |Since this works on a single line basis, bring this all up on a single line. So, now I have embedded this inside that and your embedding is done. |
|- | |- | ||
|03:25 | |03:25 | ||
− | |By refreshing we get the value of Alex. We're echoing out now Php inside | + | |By refreshing we get the value of "Alex". We're echoing out now '''Php''' inside an '''HTML''' value. |
|- | |- | ||
|03:35 | |03:35 | ||
− | |So, we're using Php code inside our value here | + | |So, we're using '''Php code''' inside our value here. |
|- | |- | ||
|03:40 | |03:40 | ||
− | |I'm going to demonstrate dollar underscore get ,remember using the single quotes | + | |I'm going to demonstrate dollar ($) underscore (_) '''get''', remember using the single quotes. |
|- | |- | ||
|03:50 | |03:50 | ||
− | |I'm going to say name and then refresh | + | |I'm going to say '''name''' and then '''refresh'''. |
|- | |- | ||
|03:55 | |03:55 | ||
− | |Nothing's happened so type in name=Alex which gives us Alex inside that | + | |Nothing's happened; so type in '''name=Alex''' which gives us "Alex" inside that. |
|- | |- | ||
|04:04 | |04:04 | ||
− | |Type in name=Kyle. It gives us Kyle inside that | + | |Type in '''name=Kyle'''. It gives us "Kyle" inside that. |
|- | |- | ||
|04:11 | |04:11 | ||
− | |Basically you can embed any Php code you want inside that | + | |Basically you can embed any '''Php code''' you want inside that. |
|- | |- | ||
|04:16 | |04:16 | ||
− | |Try saying echo Php info and you'd get a very funny result | + | |Try saying '''echo Php info''' and you'd get a very funny result. |
|- | |- | ||
|04:28 | |04:28 | ||
− | |This is the HTML code of Php info document | + | |This is the HTML code of Php info document. |
|- | |- | ||
|04:33 | |04:33 | ||
− | |So, you can see that there's loads of code in that | + | |So, you can see that there's loads of code in that. |
|- | |- | ||
|04:37 | |04:37 | ||
− | | Here we're just working with Php inside.The only thing you need to worry about is being careful with your single and double quotes | + | | Here we're just working with Php inside.The only thing you need to worry about is being careful with your single and double quotes. |
|- | |- | ||
|04:46 | |04:46 | ||
− | |So this was the basic tutorial on embedding Php code inside HTML code | + | |So this was the basic tutorial on embedding Php code inside HTML code. |
|- | |- | ||
|04:53 | |04:53 | ||
− | |I hope it was useful.Thanks for watching | + | |I hope it was useful. Thanks for watching. |
|- | |- | ||
|04:56 | |04:56 | ||
− | |This is Anoushka dubbing for the Spoken tutorials Project | + | |This is Anoushka, dubbing for the Spoken tutorials Project. |
Revision as of 16:46, 21 May 2015
Time | Narration |
00:00 | This is a short tutorial on how to embed Php code inside HTML code. This is very useful in many situations. |
00:14 | For example, if I were to create Php tags and echo out my name here. |
00:23 | By running this, let's click on a file, we just get "Alex". |
00:30 | Now for example, I can embed HTML inside this and echo it out here to make "Alex" a little bolder. |
00:38 | But what I can do is I can switch this the other way round. |
00:45 | Let's start again, create an HTML page. I'm going to use this example. |
00:52 | I will start a Php and a tag here. I echo out "Alex" and then come in outside the Php tags and add my bold here and my bold end after the ending Php tag. |
01:13 | And it gives us the same result, nothing has changed even though I've refreshed the page. |
01:20 | So, we can change that to underline and you can see that "Alex" is underlined. |
01:26 | So, we can do it either ways. It's up to you to use the HTML code inside the echo or not. But there are more uses to this. |
01:39 | Now, if you do know HTML, you know the input tag is a template tag. |
01:48 | So, let's say text and the name of this will be name and the value is going to be equal to "Alex". |
01:56 | Let's refresh this and we see we've got a text box here with "Alex" inside. Now I want to use Php to grab the get variable header and put it inside this value of our input value. |
02:14 | Now, this is really useful in some cases like form submission and error checking where you want the posted variables to stay inside the value of each text box. |
02:30 | If you haven't seen the get tutorial already, make sure you watch that. |
02:38 | Now, bring this down a couple of lines, obviously we still run this code successfully because it works on similar line basis. |
02:48 | So, this you see here is exactly the same as that, you just have to force it down a bit and I'm going to create Php text here. |
02:58 | This is going to look a funny brown colour because we're working in Php highlighting and it's not really recognizing this type of highlighting. |
03:08 | Ok, I'm just going to echo out "Alex". |
03:12 | Since this works on a single line basis, bring this all up on a single line. So, now I have embedded this inside that and your embedding is done. |
03:25 | By refreshing we get the value of "Alex". We're echoing out now Php inside an HTML value. |
03:35 | So, we're using Php code inside our value here. |
03:40 | I'm going to demonstrate dollar ($) underscore (_) get, remember using the single quotes. |
03:50 | I'm going to say name and then refresh. |
03:55 | Nothing's happened; so type in name=Alex which gives us "Alex" inside that. |
04:04 | Type in name=Kyle. It gives us "Kyle" inside that. |
04:11 | Basically you can embed any Php code you want inside that. |
04:16 | Try saying echo Php info and you'd get a very funny result. |
04:28 | This is the HTML code of Php info document. |
04:33 | So, you can see that there's loads of code in that. |
04:37 | Here we're just working with Php inside.The only thing you need to worry about is being careful with your single and double quotes. |
04:46 | So this was the basic tutorial on embedding Php code inside HTML code. |
04:53 | I hope it was useful. Thanks for watching. |
04:56 | This is Anoushka, dubbing for the Spoken tutorials Project. |