PHP Array_Merge & Array_Combine Tutorial in Hindi / Urdu

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ย. 2024

ความคิดเห็น • 52

  • @humanbeing9106
    @humanbeing9106 5 ปีที่แล้ว +7

    aapki videos se hum full stack developer bange and aapko proud bhi hoga sir

    • @jadielabdiel5921
      @jadielabdiel5921 3 ปีที่แล้ว

      I know Im kinda off topic but does anyone know of a good place to watch new movies online ?

    • @israeljack4452
      @israeljack4452 3 ปีที่แล้ว

      @Jadiel Abdiel Lately I have been using Flixzone. You can find it by googling :)

    • @landonibrahim176
      @landonibrahim176 3 ปีที่แล้ว

      @Israel Jack definitely, I have been watching on flixzone for since april myself :)

    • @jadielabdiel5921
      @jadielabdiel5921 3 ปีที่แล้ว

      @Israel Jack Thank you, signed up and it seems like they got a lot of movies there :) Appreciate it!

    • @israeljack4452
      @israeljack4452 3 ปีที่แล้ว

      @Jadiel Abdiel No problem :D

  • @ShahariareRahman
    @ShahariareRahman ปีที่แล้ว

    Nice Explanation. Easy to understand.

  • @dilawarkhan4162
    @dilawarkhan4162 3 ปีที่แล้ว +1

    Zabardast all video

    • @YahooBaba
      @YahooBaba  3 ปีที่แล้ว +1

      Thanks :)

    • @dilawarkhan4162
      @dilawarkhan4162 3 ปีที่แล้ว

      @@YahooBaba sir apki video bht achi hoti ha ap her baat details mein bataty han or mene apka chanel ka all courses follow ki a han bht achy han or agy wait rahay ga apka new course ka

    • @dilawarkhan4162
      @dilawarkhan4162 3 ปีที่แล้ว

      sir ap python ka course bhe banay please apki website pe python ka name to ha per course nai ha python ka

    • @YahooBaba
      @YahooBaba  3 ปีที่แล้ว

      Python course is coming soon

    • @dilawarkhan4162
      @dilawarkhan4162 3 ปีที่แล้ว

      @@YahooBaba thnaku so much sir men wait karu ga course ka

  • @mamunethan1356
    @mamunethan1356 3 ปีที่แล้ว

    love from Bangladesh

  • @iUmerFarooq
    @iUmerFarooq 5 ปีที่แล้ว +2

    *Tremendous tutorial* .

    • @YahooBaba
      @YahooBaba  5 ปีที่แล้ว +1

      Thanks Umer :)

    • @iUmerFarooq
      @iUmerFarooq 5 ปีที่แล้ว

      @@YahooBaba sir PSD to HTML Kar liya ab JavaScript ko kis taran use karon I mean kahan sa start lon koe website suggest karan?

    • @YahooBaba
      @YahooBaba  5 ปีที่แล้ว +2

      JavaScript ke liye aapko kuch website ke modules lagane seekhne honge jaise : Slider, Responsive Drop-down menu, accordion, tab , google map etc. Yha par mein aapko ek baat batana chahta hun ki ye sub ka code aapko seekne ki jaroorat nahi hai. Aap seedhe se jQuery ke plugins laga kar ye kaam kar sakte ho... aap www.bestjquery.com website pe ja kar plugin dekh lijiye aur usko apne template pe laga lijiye.

    • @iUmerFarooq
      @iUmerFarooq 5 ปีที่แล้ว

      @@YahooBaba Thank you Sir,
      Sir ya php ka basic k kitna lectures baqi han?

    • @YahooBaba
      @YahooBaba  5 ปีที่แล้ว +2

      Ismein 160 lectures hai

  • @technologyall7923
    @technologyall7923 5 ปีที่แล้ว +1

    Thankyou sir.

  • @bhagirathiverma2627
    @bhagirathiverma2627 ปีที่แล้ว

    Thanks sir😇😇😇😇

  • @mamounadil90
    @mamounadil90 2 ปีที่แล้ว

    Thanks Bro :)

    • @YahooBaba
      @YahooBaba  2 ปีที่แล้ว

      You're welcome!

  • @xyz3513
    @xyz3513 5 ปีที่แล้ว +1

    indexed array and associative arrays ko tod marod ke naye arrays ko bananeka future me kya fayada hoga our eska use aage kahi programing me hoga ? ?

    • @xyz3513
      @xyz3513 5 ปีที่แล้ว

      sir, I'm waiting for your reply . sir you are one of the world best teacher of programing for india, pakistan, bangal, and more Hindi/Urdu country .

    • @YahooBaba
      @YahooBaba  5 ปีที่แล้ว

      Sanket, Arrays jo hai PHP ka BASE hai , inka use sabse jyada hota hai PHP ke andar. Jab hum PHP ko MySql ke sath karte hai tab in sab tarah ke Arrays ka use hota hai. Jab mein PHP with MySql karaunga tab aapko kudh pata chal jayega ki Arrays ko hum kha use karte hai.

  • @antardas9808
    @antardas9808 4 ปีที่แล้ว

    Thanks sir......

    • @YahooBaba
      @YahooBaba  4 ปีที่แล้ว

      Your welcome :)

  • @thetwopredators728
    @thetwopredators728 3 ปีที่แล้ว

    sir jb hm apna path dal re h browser me to wo forbidden error de ra h pls suggest me ,,mai apne ek b code check nhi kr pa rhi hu

  • @darkevilgame8505
    @darkevilgame8505 4 ปีที่แล้ว

    You are osm

  • @mayurdas9285
    @mayurdas9285 4 ปีที่แล้ว

    Thanks

  • @asimkoirala8074
    @asimkoirala8074 2 ปีที่แล้ว

    Sir toh yeh array_merge() aur array_replace() functions basically same hi hue na?

    • @mahinalam2152
      @mahinalam2152 2 ปีที่แล้ว +5

      1. array_merge()
      $color1 = ["red", "blue", "green", "pink"];
      $color2 = ["black", "yellow"];
      $merge = array_merge($color1, $color2);
      print_r($merge);
      output -- red, blue, green, pink, black, yellow
      2. array_replace()
      $color1 = ["red", "blue", "green", "pink"];
      $color2 = ["black", "yellow"];
      $replace = array_replace($color1, $color2);
      print_r($replace);
      output -- black, yellow, green, pink

  • @kashishshaykh8552
    @kashishshaykh8552 4 ปีที่แล้ว

    sir print_r q use kr rahe hain hum is m agey jakr hamen is s kya faida hoga

    • @hafizshaheed6973
      @hafizshaheed6973 3 ปีที่แล้ว

      The print_r function prints the information about a variable in a more human-readable way.

  • @abdullahab5047
    @abdullahab5047 ปีที่แล้ว

    array-combine is function in php that creates an associative array by using two arrays: one for the keys and second for the values. it returns a new array by using two arrays, using the element of first array as keys and second elements for values

  • @AmitKumar-fb6yt
    @AmitKumar-fb6yt 5 ปีที่แล้ว

    Sir...array merge mein agar upar wale array mein numeric key dale aur dusre array mein Di gayi same index number value usko replace nhi Kar Raha...pls. guide

    • @YahooBaba
      @YahooBaba  5 ปีที่แล้ว

      Paste ur code here ....

  • @humanbeing9106
    @humanbeing9106 5 ปีที่แล้ว

    sir aap plss bata css media queries ke pure tutorials advanced kaha se milenge

    • @YahooBaba
      @YahooBaba  5 ปีที่แล้ว

      Hello, Media Query ka kuch advance nahi hai, jo meine css series mein bataya hai bus wahi hai. Ab aapko Template banake media query ki practice karni hai.

  • @sparshgupta8078
    @sparshgupta8078 4 ปีที่แล้ว

    $arr = [1,2,3,4,"a"=>5];
    sir is array ko kya kahenge? indexed ya associative??

    • @darkevilgame8505
      @darkevilgame8505 4 ปีที่แล้ว

      Print_r() kakre dekhlo pta chal jayega

    • @meetmeer
      @meetmeer 4 ปีที่แล้ว +1

      Mixed Array

  • @hemantagrahari4298
    @hemantagrahari4298 3 ปีที่แล้ว +1

    Sir ek registration form m video bna do aur explain krke ap btaiye ki hme validation kaise Krna h
    Field
    Name
    Password with validation
    Confirm password with validation
    Date of birth with validation
    Gender with radio validation
    Mobile number with validation
    Email with validation
    Qualification with check box multiple
    Address with validation
    File upload with validation
    Aadhaar card number with validation
    Sir please sekha do ap kaise hm bana sakte h is sb field ko lekr
    Sir please bta do ap please please please please please please please please please please please please please please please please please please please please please please please
    Sir sekha do ap fees lelo hmse