Skip to main content

Posts

Showing posts from June, 2018

How to upload image on server

if you want to upload images on the server  using PHP then you should should follow me ... step 1 > Create a form and with a submit button in 'index.html'. step2 > Create a folder 'upload' in the same directory where your 'index.html' located. step3 > 'show.php' to show all the images from your server. step1 > index.php <!DOCTYPE html> <html> <head> <title>Upload photo</title> </head> <body> <h2>Choose file to upload ...</h2> <form action="process.php" method="POST"  enctype="multipart/form-data">     choose file <input type="file" name="filename">     <input type="submit" value="Submit"><br><br> </form> <form action="show.php" method="POST" enctype="multipart/form-data">     <button type="submit">Show Pics</b...

Top 5 free Websites to learn programming

Hello, friends Internet has everything you want to learn free of cost. Today I am going to share some of the great websites which helped me to learn programming. 1) W3school.com : It's awesome website to learn Web Development and good for basics in programming lang uages. It has variety of secti ons like FRONT END and BACK END . You can learn for the front end = HTML5, CSS 3, JAVASCRIPT, JQuery, ANGULARJS, BOOTSTRAP and so on... For the back end =  PHP, PYTHON, Node. JS, SQL. If you want to  go in website development definitely this website is for you. 2) Study tonight.com   : B est website for beginners to learn basics of programming and computer networking. I spend Most of the costly time learning with this website. Go check at least once . Definitely you will love it. 3) Tutorials point.com : This website has everything you need. It's has vast resources of lea rning and qu ality of tuto rials. I had  spend time there when I was beginner ...