▶ ▶ ▶ ▶ ▶ LEAVE A LIKE FOR MORE PROJECTS 👍👍👍👍👍 ▶ Source Code: 1bestcsharp.sellfy.store/p/php-address-book-project-with-mysql-database/ ▶ Get PHP Projects Source Code: 1bestcsharp.sellfy.store/p/php-projects-source-code-bundle/ ▶ Buy Me a Coffee: 1bestcsharp.sellfy.store/p/buymeacoffee/
@shahabakhavan2769Ай бұрын
Very, very excellent and unique. Please, if possible, put up a store with PHP and PDO without object orientation. Thanks.
@242StillАй бұрын
In 5:06:55 when you put SQL syntax, code stop working ant made PDO error.. SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens in I don't know about the paid download code, but it doesn't work for me. It does for you in the video.
@1BestCsharpblogАй бұрын
This error occurs when the number of placeholders (?) or named parameters (:name) in your SQL query doesn't match the number of values you're trying to bind. Count your placeholders and bind statements - they must match exactly. Check for typos in parameter names. Verify all parameters are properly bound. Try this. $sql = "SELECT c.id, c.name, c.email, c.phone, c.address, g.name as 'group' FROM _contact_ c INNER JOIN _group_ g ON c.group_id = g.id WHERE c.user_id = :user_id"; $params = [':user_id' => $user_id]; $stmt = $conn->prepare($sql); $stmt->execute($params);
@242StillАй бұрын
@1BestCsharpblog When i bought your code, there Is a same error. I'l try update my XAMPP, meybe it Will help.
@242StillАй бұрын
@@1BestCsharpblog It's not working. It's throwing another error. But if I look at your paid code, it doesn't work either.
@1BestCsharpblogАй бұрын
@@242Still you need to debug to see where the code stop and what's the error and verify: Database credentials are correct Database and tables exist with the correct names Column names match exactly (including case sensitivity)
@242StillАй бұрын
@@1BestCsharpblog One more question. Why is the same error in the purchased code? I bought a "broken code" 😉
@PawaraNilangaАй бұрын
❤❤❤❤
@arivazhaganr7139Ай бұрын
What is the name of this project?
@1BestCsharpblogАй бұрын
- PHP Contact management system - OR - PHP Address Book.