0

How to make the E-commerence store like Amazon

How to make the E-commerence store like Amazon | anyone give me e-commerence store coding

4th Aug 2024, 1:54 AM
Ishaq Ahmed
11 Respostas
+ 3
Use an E-commerence platform. There are many to choose from. https://www.shopify.com/blog/best-ecommerce-platforms After you choose one, Watch a Youtube video for how to set up the platform.
4th Aug 2024, 2:43 AM
Chris Coder
Chris Coder - avatar
0
Thanks brother
4th Aug 2024, 4:24 PM
Ishaq Ahmed
0
Eman Eman You're welcome â˜ș
4th Aug 2024, 6:56 PM
Chris Coder
Chris Coder - avatar
0
How do you want to do it? A simpler way or complicated way? Shopify is a good one, However there are issues like generally Shopify Shops can be fake ones. Like a website that looks like the Nike website but is a fake one, So sometimes if you use Shopify as the ecommerce platform, it will pass an insecure website for shopping.
5th Aug 2024, 4:35 AM
Gabriel Sousa
Gabriel Sousa - avatar
0
Ok bro
5th Aug 2024, 4:39 AM
Ishaq Ahmed
0
How I can float while loop in c language coding
5th Aug 2024, 6:54 AM
SOLO IMRAN AFRIDI CODER
SOLO IMRAN AFRIDI CODER - avatar
0
A `while` loop in C is used to repeatedly execute a block of statements as long as a given condition is true. Here's the basic syntax for a `while` loop: ```c while (condition) { // Code to be executed as long as condition is true } ``` To illustrate a `while` loop with a floating-point condition, here's an example where we increment a floating-point variable until it reaches a certain value: ```c #include <stdio.h> int main() { float number = 0.0; float increment = 0.1; while (number < 1.0) { printf("Number: %.1f\n", number); number += increment; // Increment the number by 0.1 } return 0; } ``` ### Explanation: 1. **Initialization**: The floating-point variable `number` is initialized to `0.0`. 2. **Condition**: The loop will continue to execute as long as `number` is less than `1.0`. 3. **Code Block**: Inside the loop, we print the current value of `number` and then increment it by `0.1`. ### Important Points to Consider: - **Floating-point Precision**: Be
5th Aug 2024, 7:03 AM
Ishaq Ahmed
0
I think it's going to a lot of your time and patience as Amazon is a huge website and it's not easy to replicate but if you are willing to make a smaller site like https://www.jacketfever.com/product/taylor-swift-black-the-man-jacket/ then you can achieve in a way less of a time.
5th Aug 2024, 7:13 AM
nancy441
0
Thank you
5th Aug 2024, 7:15 AM
SOLO IMRAN AFRIDI CODER
SOLO IMRAN AFRIDI CODER - avatar
0
i am also interested bro
5th Aug 2024, 10:06 AM
Aashish Neupane
Aashish Neupane - avatar
0
Okay make the website
5th Aug 2024, 10:21 AM
Ishaq Ahmed