WDS Academy is a coding and web development blog dedicated to helping students, beginners, and professionals learn modern programming skills. Explore tutorials on PHP, MySQL, Python, HTML, CSS, JavaScript, Bootstrap, WordPress, AI tools, software development, project-based learning, interview preparation, and career guidance. Learn coding through practical examples, real-world projects, and step-by-step tutorials. Learn coding in Puranpur
Wednesday, April 22, 2026
How to Add AI to Your Website
Monday, April 20, 2026
Image Compressor (JavaScript)
Friday, April 17, 2026
SQL Prepared Statements ( Very Important Concept )
<?php
Video Link (Sql Prepared Statement)
Tuesday, April 14, 2026
Promises in JavaScript
Create Promise
let myPromise = new Promise(function(resolve, reject) {
Condition
let success = true;
If Condition
if (success) {
resolve("Task Completed");
}
Else Condition
else {
reject("Task Failed");
}
Handle Success
.then(function(result) {
console.log(result);
})
Handle Error
.catch(function(error) {
console.log(error);
});
Full Code :
let myPromise = new Promise(function(resolve, reject) {
let success = true;
if (success) {
resolve("Task Completed");
} else {
reject("Task Failed");
}
});
myPromise
.then(function(result) {
console.log(result);
})
.catch(function(error) {
console.log(error);
});
⚡ Flow Summary
Promise created
↓
Check condition (success)
↓
If true → resolve() → then()
If false → reject() → catch()π― Real-life Example
- You ordered food π
- If delivered →
- If delivered →
resolve("Food arrived")
- If not →
- If not →
reject("Delivery failed")
Saturday, April 11, 2026
MYSQL vs MYSQLI vs PDO
<?php
Wednesday, April 1, 2026
π Start Your Coding Journey with WDS!
Students are now stepping into the world of web development by learning HTML & JavaScript at WDS! π»✨
From building simple web pages to creating interactive features, our training helps students develop real-world skills that matter in today’s digital era.
πΉ Learn HTML to design beautiful web structures
πΉ Master JavaScript to make websites dynamic
πΉ Hands-on projects for practical experience
πΉ Step-by-step guidance from basics to advanced
Whether you're a beginner or looking to upgrade your skills, WDS is the perfect place to grow and succeed in coding!
π Build. Learn. Grow.
#WebDevelopment #HTML #JavaScript #CodingStudents #WDS #LearnToCode
Professional Trigonometric Calculator using HTML, CSS, and JavaScript.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport...
-
Video Link - Go to video Full Code - <style> .popup-overlay { display : none ; position : fixed ; top ...
-
Full Code: Demo : <!DOCTYPE html > <html lang = "en" > <head> <meta charset = "UTF-8" > ...





