Difference between revisions of "PHP-and-MySQL/C3/MySQL-Part-4/English-timed"

From Script | Spoken-Tutorial
Jump to: navigation, search
(Created page with '{| border=1 !Time !Narration |- |0:00 |'''My SQL''' અને '''php''' ટ્યુટોરીયલોનાં ચોથા ભાગ પરના સ્પોકન ટ્…')
 
Line 3: Line 3:
 
!Narration
 
!Narration
 
|-
 
|-
|0:00
+
|0:0
|'''My SQL''' અને '''php''' ટ્યુટોરીયલોનાં ચોથા ભાગ પરના સ્પોકન ટ્યુટોરીયલમાં તમારું સ્વાગત છે.
+
|Welcome to the Spoken Tutorial on the fourth part of My SQL and php tutorials.
 
|-
 
|-
 
|0:10
 
|0:10
|છેલ્લા ટ્યુટોરીયલમાં, મેં કેટલીક વેલ્યુઓને આપણા કોષ્ટકમાં દાખલ કરવા માટે '''"mysql_query"''' ફંક્શનનો ઉપયોગ કર્યો હતો.
+
|In the last tutorial, I used "mysql_query" function to insert some values into our table.  
 
|-
 
|-
 
|0:20
 
|0:20
|મેં અહીં એક ભૂલ કરી છે, ડેટ ને વર્તમાન તારીખ તરીકે મુકી છે, જે મારી જન્મ તારીખ નથી.
+
|I made a mistake here by putting the date as current date, which isn't my date of birth.  
 
|-
 
|-
 
|0:26
 
|0:26
|હું અહીં અપડેટ કરવામાં સક્ષમ હતો. હું એ પણ સ્પષ્ટ કરવામાં સક્ષમ હતો કે હું ક્યાં સુધારા કરવા માટે ઈચ્છું છું.
+
|I was able to update here. I was also able to specify where I wanted to update.  
 
|-
 
|-
 
|0:31
 
|0:31
|યૂનિક '''ID''' કી નો ઉપયોગ કરીને, હું સ્પષ્ટપણે સ્પષ્ટ કરવા માટે સક્ષમ હતો કે હું ક્યાં સુધારા કરવા માટે ઈચ્છું છું.
+
|Using a unique ID key, I was able to specify exactly where I wanted to update.
 
|-
 
|-
 
|0:35
 
|0:35
|તો આપણે પહેલાથીજ '''mysql''' કોડમાં '''"update"''' જોઈ ચુક્યા છીએ.
+
|So we've already seen the "update" in mysql code.
 
|-
 
|-
 
|0:40
 
|0:40
|આ ખુબ જ ઉપયોગી છે.
+
|This is very useful.
 
|-
 
|-
 
|0:41
 
|0:41
|આ ક્વેરી અને કોડને વધારે વાપરવામાં આવે છે જયારે સામાન્ય રીતે તમે કોષ્ટકો અથવા '''mysql''' સાથે કામ કરો છો.
+
|This query and code is the one that is mostly used while working with tables or if you're working with mysql in general.
 
|-
 
|-
 
|0:52
 
|0:52
|આગળ હું તમને બતાવીશ કે કેવી રીતે તમારા કોષ્ટકમાંથી ડેટા મેળવવા અને કેવી રીતે તેને સારી રીતે પ્રદર્શિત કરવા.
+
|The next thing I'll show you is how to get data from your table and how to display it really well.
 
|-
 
|-
 
|1:04
 
|1:04
|તો હું આ '''"update data"''' ને દર્શાવીશ જેથી આપણને ખબર પડે કે આ શું છે.
+
|So I will call this "update data" so that we know what that is.  
 
|-
 
|-
 
|1:14
 
|1:14
|અહીં, આપણે '''"extract data"''' લખીશું.
+
|Here, we will say "extract data".  
 
|-
 
|-
 
|1:17
 
|1:17
|આ ઉપયોગ કરવા માટે સારો શબ્દ છે.
+
|That's a good word to use.
 
|-
 
|-
 
|1:18
 
|1:18
|હવે, આપણે ફરીથી '''"extract"''' લખીશું અને આપણે એક વેરીએબલ બનાવીશું.
+
|Now, again we will say "extract" and we will create a variable.  
 
|-
 
|-
 
|1:24
 
|1:24
|આ ફરીથી '''"mysql query"''' છે અને અહીં કેટલાક કોડ છે.
+
|This again is "mysql query" and here is some code.
 
|-
 
|-
 
|1:28
 
|1:28
|આ આ એકલ લાઈનની ક્વેરીઓનો ઉપયોગ કરવા કરતા થોડી વધારે જટિલ છે.
+
|This is slightly more complicated than using these single line queries.
 
|-
 
|-
 
|1:37
 
|1:37
|આપણે અહીં એકલ લાઈન ની ક્વેરીઓનો ઉપયોગ કરીએ છીએ, પણ આને બરાબર પ્રદર્શિત કરવા માટે આ પછી આપણી પાસે અમુક કોડ હોઈ શકે છે.
+
|We use single line queries here, but we could have some code after this in order to display properly.
 
|-
 
|-
 
|1:44
 
|1:44
|પ્રથમ હું કોષ્ટકમાં બીજો એક રેકોર્ડ બનાવીશ.
+
|First I will create another record in the table.  
 
|-
 
|-
 
|1:50
 
|1:50
|તો આપણને હવે આ '''"current date"''' ફંક્શનની જરૂર નથી.
+
|So we don't need this "current date" function anymore.  
 
|-
 
|-
 
|1:52
 
|1:52
|હું આ '''"write"''' ને દર્શાવવા માંગું છું. ચાલો કેટલીક નવી વેલ્યુઓ બનાવીએ.
+
|I need this "write" to be shown. Lets create some new value.
 
|-
 
|-
 
|1:59
 
|1:59
|હું '''"Kyle Headen"''' લખીશ અને અહીં જન્મ તારીખ સુયોજિત કરીશ. આ મહિનો છે. તો આ ૭ છે અને ચાલો અહીં, ૨૪ લખીએ.
+
|I'll say "Kyle Headen" and I'll set a date of birth here. This one is month. So that is the 7th and lets say here, 24th.
 
|-
 
|-
 
|2:16
 
|2:16
|તો હવે આપણને જન્મ તારીખ મળી ગયી.
+
|So now we got the date of birth.
 
|-
 
|-
 
|2:18
 
|2:18
|હવે આપણને '''male''' મળ્યું છે અને ત્યારબાદ '''"Kyle Headen"''' મળ્યું છે અને આપણે ફરીથી આને આપણા ડેટાબેઝમાં દાખલ કરી રહ્યા છીએ.
+
|Now we've got male and then we've got "Kyle Headen" and we are again inserting this into our database.
 
|-
 
|-
 
|2:26
 
|2:26
|ચાલો રીફ્રેશ કરીએ.
+
|Lets refresh.
 
|-
 
|-
 
|2:28
 
|2:28
|અહીં હું બીજી એક નવી વેલ્યુ બનાવીશ.
+
|Here I'll create another new value.
 
|-
 
|-
 
|2:32
 
|2:32
|હું '''"Emily Headen"''' લખીશ અને હમણાં પુરતું હું જન્મ તારીખને જેમ છે તેમ જ છોડી દઈશ.
+
|I'll say "Emily Headen" and I'll just leave the date of birth as it is for now.  
 
|-
 
|-
 
|2:44
 
|2:44
|આ '''"Female"''' રહેશે કારણ કે હું આ રેકોર્ડોનું એક સ્થાને નિષ્કર્ષણ કરીશ.
+
|This will be "Female" because I'll extract these records at one point.
 
|-
 
|-
 
|2:48
 
|2:48
|આ ફરીથી રીફ્રેશ કરીએ.
+
|Refresh this again.
 
|-
 
|-
 
|2:50
 
|2:50
|તો આપણે અહીં ૩ રેકોર્ડો બનાવ્યા છે.
+
|So we've created 3 records here.
 
|-
 
|-
 
|2:53
 
|2:53
|હું '''"write"''' ને કમેન્ટ કરીશ. મારા ડેટાબેઝનું બેકઅપ લઈએ.
+
|I'll comment this "write". Backup my database.
 
|-
 
|-
 
|2:56
 
|2:56
|હું આ ચોક્કસ કોષ્ટકમાં બ્રાઉઝ પર ક્લિક કરીશ અને તમે જોઈ શકો છો કે મને ૩ રેકોર્ડો મળ્યા છે.
+
|I'll click on browse in this specific table and you can see that I've got 3 records.
 
|-
 
|-
 
|3:02
 
|3:02
|આમાનું દરેક એક '''"record of data"''' કહેવાય છે.
+
|Each one of these is called a "record of data".  
 
|-
 
|-
 
|3:05
 
|3:05
|આપણે જોઈ શકીએ છીએ કે આ '''id''' પણ આપમેળે વધી છે.
+
|We can see this id has also automatically incremented.
 
|-
 
|-
 
|3:07
 
|3:07
|આપણે સ્પષ્ટ કર્યા હતા તે ડેટા આપણને મળી ગયા છે અને તમામ જેની આપણને જરૂર છે.
+
|We've got the data that we specified and everything that we need.
 
|-
 
|-
 
|3:12
 
|3:12
|ઠીક છે, તો અમે આ ડેટાનું અહીં નિષ્કર્ષણ કરી રહ્યા છીએ અને હું આને અનકમેન્ટ કરીશ.
+
|Ok, so we are extracting data here and I will uncomment this.
 
|-
 
|-
 
|3:19
 
|3:19
|આપણી '''mysql''' ક્વેરી '''"select"''' સાથે શરૂ થવા જઈ રહ્યી છે.
+
|Our mysql query is going to start with "select".  
 
|-
 
|-
 
|3:23
 
|3:23
|આ ક્યાં તો ચોક્કસ રેકોર્ડો રહેશે અથવા આપણને જોઈતા બધા ડેટા ને મેળવવા માટે આપણે '''એસ્ટેરીસ્ક (*)''' વાપરી શકીએ છીએ.
+
|This will be either specific records or we can use asterisk (*) to get all the data we need.
 
|-
 
|-
 
|3:32
 
|3:32
|હવે હું '''એસ્ટેરીસ્ક (*)''' વાપરીશ.
+
|Now I'll use an asterisk (*).
 
|-
 
|-
 
|3:35
 
|3:35
|તમે શું કરી શકો, '''"select firstname"''' ટાઈપ કરો.
+
|What you could do is type "select firstname".  
 
|-
 
|-
 
|3:40
 
|3:40
|પરંતુ સામાન્ય રીતે, જયારે તમારી પાસે કોષ્ટક છે, તમને મોટા ભાગના ડેટાની જરૂર રહેશે અને આ કરવા માટે તે વધારે સમય લેશે.
+
|But usually, when you have table, you will need most of the data and it'll take longer to do.
 
|-
 
|-
 
|3:46
 
|3:46
|કોષ્ટકનાં સ્ત્રોત પર આધાર રાખી, આ વધુ સમય નહી લેશે.
+
|Depending on the source of the table, this won't take very long.  
 
|-
 
|-
 
|3:52
 
|3:52
|તો તમારી પાસે પહેલાથી જ કેટલાક રેકોર્ડો અથવા ફીલ્ડો છે.
+
|So you already have a couple of records or fields.  
 
|-
 
|-
 
|3:55
 
|3:55
|પણ હમણાં માટે હું SELECT '''એસ્ટેરીસ્ક (*)''' લખીશ, જે એક સ્ટાર છે.
+
|But for now I'll say select asterisk (*), which is a star.  
 
|-
 
|-
 
|4:00
 
|4:00
|આપણે લખી શકીએ છીએ SELECT સ્ટાર અને પછી લખી શકીએ છીએ '''FROM'''.
+
|We can say select star and then we say FROM.  
 
|-
 
|-
 
|4:04
 
|4:04
|ફરીથી આપણે લખીએ, ચોક્કસ કોષ્ટક જે છે '''"people"'''.
+
|Again we say, the specified table which is "people".  
 
|-
 
|-
 
|4:08
 
|4:08
|અહીં, આપણે લખી શકીએ છીએ '''WHERE''' અને કેવી રીતે તમે ઉમમમ...... તમને જોઈતા ડેટા માટે ફીલ્ટર કરી શકો છો.
+
|Here, we can say WHERE and how can you ummm...... filter for the data you want.
 
|-
 
|-
 
|4:18
 
|4:18
|તો હું લખી શકું છું '''"SELECT star (*) FROM people WHERE firstname= "Alex'"'''.
+
|So I can say "SELECT star (*) FROM people WHERE firstname= "Alex'".  
 
|-
 
|-
 
|4:22
 
|4:22
|આ ક્વેરી ફક્ત એક વેલ્યુ પાછી આપશે કારણ કે આપણે જોઈ શકીએ છીએ કે, જો આપણે અહીં ખોલીએ છીએ, તો અહીં '''"Alex"''' સાથે ફક્ત એક જ રેકોર્ડ છે.
+
|This query will return only one value because we can see that if we open up here, there is only one record with "Alex".  
 
|-
 
|-
 
|4:33
 
|4:33
|આપણે આ  '''"mysql numrows"''' નામનાં બીજા એક ખરેખર ઉપયોગી ફંક્શનનો ઉપયોગ કરીને કરી શકીએ છીએ અને હું શું કરી શકું છું કે આને એકો કરું છું.
+
|We can do this by using another really useful function called "mysql numrows" and what I can do is echo this out.
 
|-
 
|-
 
|4:44
 
|4:44
|હું '''"echo mysql_num_rows"''' લખીશ. આ જ કારણ છે કે આપણે આ વેરીએબલોને અહીં સંગ્રહીત કરવા માટે આપ્યા છે.
+
|I'll say "echo mysql_num_rows". This is the reason we have given these variables here to be stored in.
 
|-
 
|-
 
|4:54
 
|4:54
|અહીં આપણે ફક્ત '''"extract"''' ટાઈપ કરી શકીએ છીએ.
+
|Here we can just type "extract".
 
|-
 
|-
 
|4:56
 
|4:56
|આપણું '''"extract"''' વેરીએબલ આપણી ક્વેરીને પકડી રાખે છે અને આપણું ફંક્શન અહીં આપણને બતાવે છે કે ક્વેરીમાં કેટલી પંક્તિઓ છે.
+
|Our "extract" variable holds our query and our function here tells us how many rows are there in the query that is given out.
 
|-
 
|-
 
|5:09
 
|5:09
|માની લઈએ કે આપણે ફર્સ્ટનેમ '''"Alex"''' આપ્યું, જયારે આપણે રીફ્રેશ કરીશું ત્યારે તે બતાવશે.
+
|Presuming that we gave firstname as "Alex", it'll show when we refresh.  
 
|-
 
|-
 
|5:14
 
|5:14
|જોકે તમને ૧ મળે છે.
+
|However you get 1.  
 
|-
 
|-
 
|5:15
 
|5:15
|ચાલો આ બદલીએ. ચાલો એવું કઈક મુકીએ જે આ ડેટાબેઝમાં બે લોકો વચ્ચે સામાન્ય હોય.
+
|Lets change this. Lets put something that's common to two people in this database.
 
|-
 
|-
 
|5:21
 
|5:21
|તે '''"gender"''' હશે.
+
|That would be the "gender".
 
|-
 
|-
 
|5:23
 
|5:23
|તેથી આ '''"Male"''' અથવા '''"Female"''' રહેશે. અહીં આપણે લખી શકીએ છીએ '''"WHERE gender = M"''' અને જયારે આપણે રીફ્રેશ કરીએ છીએ, ત્યારે આપણને બે રેકોર્ડો મળે છે.
+
|So that'll be "Male" or "Female" . Here we can say "WHERE gender = M" and when we refresh, we get two records.
 
|-
 
|-
 
|5:35
 
|5:35
|તો આપણે કહી શકીએ છીએ કે આપણને કેટલા રેકોર્ડો મળી રહ્યા છે.
+
|So we can tell how many records we are getting out.
 
|-
 
|-
 
|5:38
 
|5:38
|તો ઉદાહરણ તરીકે, મારા ડેટાબેઝમાં કેટલા લોકો પુરુષ છે એ બતાવવા માટે આ ખરેખર લાભદાયક છે.
+
|This is really useful for saying how many people in my database are male, for example.
 
|-
 
|-
 
|5:44
 
|5:44
|અને આપણે જોઈ શકીએ છીએ કે કેટલા પુરુષો અથવા સ્ત્રીઓ આપણી વેબસાઈટમાં નોંધાયેલ છે.
+
|And we can see how many males or females are registered to our website.
 
|-
 
|-
 
|5:49
 
|5:49
|તો તમે નોંધણી થયેલ માહિતીને અંદર સંગ્રહીત કરી શકો છો.
+
|So you can store registered information inside here.  
 
|-
 
|-
 
|5:55
 
|5:55
|આપણે રેકોર્ડોને ક્રમાનુસાર પણ કરી શકીએ છીએ.
+
|What we can also do is order the records.
 
|-
 
|-
 
|5:59
 
|5:59
|તો હું '''"ORDER BY id"''' લખીશ અને આપણે ઉતરતો ક્રમ પસંદ કરી શકીએ છીએ જે છે '''"DESC"''' અથવા ચઢતો ક્રમ પસંદ કરી શકીએ છીએ , જે છે '''"ASC"'''.
+
|So I'll say "ORDER BY id" and we can choose descending that is "DESC" or we can choose ascending, which is "ASC".  
 
|-
 
|-
 
|6:08
 
|6:08
|પરંતુ હમણા માટે હું આ પાછુ લઈશ કારણ કે આપણે હજુ સુધી આપણા ડેટાને વાસ્તવમાં એકો કર્યા નથી.
+
|But for now I'll take this out because we haven't actually echoed out our data yet.  
 
|-
 
|-
 
|6:13
 
|6:13
|આપણે પસંદ થયેલ આપણા ડેટાને વપરાશકર્તા સમક્ષ રજુ કર્યા નથી.
+
|We haven't displayed out our data to the users that has been selected.
 
|-
 
|-
 
|6:16
 
|6:16
|તેથી આ સમયે આને વાપરવાનો કોઈ જ અર્થ નથી.
+
|So there is no point in using that at the moment.
 
|-
 
|-
 
|6:19
 
|6:19
|હવે, અહીં હું લખીશ '''select star (*) from "people"''' કારણ કે હું આ કોષ્ટકમાંથી તમામ માહિતીને પસંદ કરવા ઈચ્છું છું.
+
|Now, here I'll say select star (*) from "people" because I want to select all the data from this table here.  
 
|-
 
|-
 
|6:29
 
|6:29
|તેથી હું હેરફેર કરી શકું છું અને મારી ઈચ્છા પ્રમાણે તેને વપરાશકર્તા સમક્ષ દર્શાવી શકું છું.
+
|So I can manipulate and show it to the user the way I want.
 
|-
 
|-
 
|6:31
 
|6:31
|હું અહીં '''"numrows"''' નામનું કઈક બનાવીશ; '''"numrows ="''' આ.
+
|I'll create something here called "numrows"; "numrows =" that.
 
|-
 
|-
 
|6:42
 
|6:42
|હું એક '''"while"''' લૂપ ને ઉપયોગમાં લઈશ. આ એક ચોક્કસ ફંક્શનને ઉપયોગમાં લેશે જે છે '''"mysql_fetch_assoc"'''.
+
|I'll use a "while" loop. This will use a specific function which is "mysql_fetch_assoc".
 
|-
 
|-
 
|6:58
 
|6:58
|તે આને એક એસોસીએટીવ એરેમાં મુકે છે.
+
|It puts this into an associative array.
 
|-
 
|-
 
|7:02
 
|7:02
|જો તમે નથી જાણતા કે એસોસીએટીવ એરે શું છે, તો '''"Arrays"''' ઉપરના ટ્યુટોરીયલને જુઓ.
+
|If you don't know what an associative array is, check out "Arrays" tutorial.  
 
|-
 
|-
 
|7:06
 
|7:06
|પાછા આવીએ, '''"WHILE the row= mysql_fetch_aasoc"''' અથવા એસોસીએટીવ જે હું કહીશ અને આ '''"extract"''' ક્વેરી અંતર્ગત છે.
+
|Coming back, "WHILE the row= mysql_fetch_aasoc" or associative is what I will say and this is inside the "extract" query.
 
|-
 
|-
 
|7:21
 
|7:21
|આપણે '''"row"''' ને એરે નામ તરીકે પસંદ કરી રહ્યા છીએ અને આપણે આને તમામ પસંદ કરેલા ડેટા માટે એરે તરીકે પસંદ કરી રહ્યા છીએ.
+
|We are selecting "row" as array name and we are selecting this as an array for all the selected data.
 
|-
 
|-
 
|7:31
 
|7:31
|હું અહીં રોકાઈ જઈશ. આવનાર ટ્યુટોરીયલમાં હું તમને સમજાવીશ કે આ ડેટા ને કેવી રીતે એકો કરવું.
+
|I'll stop here. In the next tutorial I'll show you how to echo out this data.  
 
|-
 
|-
 
|7:37
 
|7:37
|હું આને હજુ વધારે વિગતવાર સમજાવીશ.
+
|I'll probably explain this a bit more in detail.
 
|-
 
|-
 
|7:40
 
|7:40
|સ્પોકન ટ્યુટોરીયલ પ્રોજેક્ટ માટે IIT-Bombay તરફથી ભાષાંતર કરનાર હું, ભરત સોલંકી વિદાય લઉં છું.
+
|This is Juanita Jayakar dubbing for the Spoken Tutorial Project.

Revision as of 11:45, 6 December 2012

Time Narration
0:0 Welcome to the Spoken Tutorial on the fourth part of My SQL and php tutorials.
0:10 In the last tutorial, I used "mysql_query" function to insert some values into our table.
0:20 I made a mistake here by putting the date as current date, which isn't my date of birth.
0:26 I was able to update here. I was also able to specify where I wanted to update.
0:31 Using a unique ID key, I was able to specify exactly where I wanted to update.
0:35 So we've already seen the "update" in mysql code.
0:40 This is very useful.
0:41 This query and code is the one that is mostly used while working with tables or if you're working with mysql in general.
0:52 The next thing I'll show you is how to get data from your table and how to display it really well.
1:04 So I will call this "update data" so that we know what that is.
1:14 Here, we will say "extract data".
1:17 That's a good word to use.
1:18 Now, again we will say "extract" and we will create a variable.
1:24 This again is "mysql query" and here is some code.
1:28 This is slightly more complicated than using these single line queries.
1:37 We use single line queries here, but we could have some code after this in order to display properly.
1:44 First I will create another record in the table.
1:50 So we don't need this "current date" function anymore.
1:52 I need this "write" to be shown. Lets create some new value.
1:59 I'll say "Kyle Headen" and I'll set a date of birth here. This one is month. So that is the 7th and lets say here, 24th.
2:16 So now we got the date of birth.
2:18 Now we've got male and then we've got "Kyle Headen" and we are again inserting this into our database.
2:26 Lets refresh.
2:28 Here I'll create another new value.
2:32 I'll say "Emily Headen" and I'll just leave the date of birth as it is for now.
2:44 This will be "Female" because I'll extract these records at one point.
2:48 Refresh this again.
2:50 So we've created 3 records here.
2:53 I'll comment this "write". Backup my database.
2:56 I'll click on browse in this specific table and you can see that I've got 3 records.
3:02 Each one of these is called a "record of data".
3:05 We can see this id has also automatically incremented.
3:07 We've got the data that we specified and everything that we need.
3:12 Ok, so we are extracting data here and I will uncomment this.
3:19 Our mysql query is going to start with "select".
3:23 This will be either specific records or we can use asterisk (*) to get all the data we need.
3:32 Now I'll use an asterisk (*).
3:35 What you could do is type "select firstname".
3:40 But usually, when you have table, you will need most of the data and it'll take longer to do.
3:46 Depending on the source of the table, this won't take very long.
3:52 So you already have a couple of records or fields.
3:55 But for now I'll say select asterisk (*), which is a star.
4:00 We can say select star and then we say FROM.
4:04 Again we say, the specified table which is "people".
4:08 Here, we can say WHERE and how can you ummm...... filter for the data you want.
4:18 So I can say "SELECT star (*) FROM people WHERE firstname= "Alex'".
4:22 This query will return only one value because we can see that if we open up here, there is only one record with "Alex".
4:33 We can do this by using another really useful function called "mysql numrows" and what I can do is echo this out.
4:44 I'll say "echo mysql_num_rows". This is the reason we have given these variables here to be stored in.
4:54 Here we can just type "extract".
4:56 Our "extract" variable holds our query and our function here tells us how many rows are there in the query that is given out.
5:09 Presuming that we gave firstname as "Alex", it'll show when we refresh.
5:14 However you get 1.
5:15 Lets change this. Lets put something that's common to two people in this database.
5:21 That would be the "gender".
5:23 So that'll be "Male" or "Female" . Here we can say "WHERE gender = M" and when we refresh, we get two records.
5:35 So we can tell how many records we are getting out.
5:38 This is really useful for saying how many people in my database are male, for example.
5:44 And we can see how many males or females are registered to our website.
5:49 So you can store registered information inside here.
5:55 What we can also do is order the records.
5:59 So I'll say "ORDER BY id" and we can choose descending that is "DESC" or we can choose ascending, which is "ASC".
6:08 But for now I'll take this out because we haven't actually echoed out our data yet.
6:13 We haven't displayed out our data to the users that has been selected.
6:16 So there is no point in using that at the moment.
6:19 Now, here I'll say select star (*) from "people" because I want to select all the data from this table here.
6:29 So I can manipulate and show it to the user the way I want.
6:31 I'll create something here called "numrows"; "numrows =" that.
6:42 I'll use a "while" loop. This will use a specific function which is "mysql_fetch_assoc".
6:58 It puts this into an associative array.
7:02 If you don't know what an associative array is, check out "Arrays" tutorial.
7:06 Coming back, "WHILE the row= mysql_fetch_aasoc" or associative is what I will say and this is inside the "extract" query.
7:21 We are selecting "row" as array name and we are selecting this as an array for all the selected data.
7:31 I'll stop here. In the next tutorial I'll show you how to echo out this data.
7:37 I'll probably explain this a bit more in detail.
7:40 This is Juanita Jayakar dubbing for the Spoken Tutorial Project.

Contributors and Content Editors

Krupali, Pratik kamble, Sandhya.np14, Sneha