C # ( Sharp ) Console Programming Tutorial
+10 C # ( Sharp ) Console Programming Tutorial
+10 C # ( Sharp ) Console Programming Tutorial
+10 How to import big or large sql file into PHPmyadmin If you have APACHE SERVER Step 1. – First find the php.ini file Step 2. – Your php.ini file in like this path “C:\wamp64\bin\php\php7.0.10” Step 3. – Open the php.ini file in notepad or suitable text editor step 4. – Now find these all …
Continue reading “How to import big sql file into PHPmyadmin”
+20 Developed By – Sir. Mukesh Kumar Ashwani ISO=INTERNATIONAL ORGANIZATION STANDARDIZATION GUI=GRAPHICL USER INTERFACE WWW=WORLD WIDE WEB JPEG=JOINT PHOTOGRAPHIC EXPERTS GROUP DBMS=DATA BASE MANAGEMENT SYSTEM HTTP=HYPER TEXT TRANSMISSION PROTOCOL HTML=HYPER TEXT MARKUP LANGUAGE RGB=RED GREEN BLUE BIOS=BASIC INPUT OUTPUT SYSTEM FTP=FILE TRANSFER PROTOCOL IRC=INTERNET RELY CHAT TCP=TRANSMISSION CONTROL PROTOCOL ISP=INTERNET SERVICE PROVIDER DOT=DEPARTMENT OF TELECOMMUNICATION …
00 Pattern – 1 [dm_code_snippet background=”yes” background-mobile=”yes” bg-color=”#abb8c3″ theme=”dark” language=”php” wrapped=”no”] <?php for($i=1;$i<=5;$i++) { for($j=1;$j<=$i;$j++) { echo ” *”; } echo “<br>”; } ?> [/dm_code_snippet] Output Pattern – 2 [dm_code_snippet background=”yes” background-mobile=”yes” bg-color=”#abb8c3″ theme=”dark” language=”php” wrapped=”no”] <?php $val=4; for($i=1;$i<=5;$i++) { for($k=1;$k<=$val;$k++) { echo “_”; } $val–; for($j=1;$j<=$i;$j++) { echo “*”; } echo “<br>”; } …