The Code You Will Love
Random Unique Number in CI3
Posted on: Monday January 6, 2025
Random Unique 6 digit number generation in CI3 [crayon-678ae61ea2f6c835894932/] [...]
Read MoreHash Password in CI4
Posted on: Friday January 3, 2025
Password: 1. Created a Helper Function Created helper functions for password hashing and verification to reuse across your application. Create a file in app/Helpers, e.g., [...]
Read MoreLogin in CI4 Complete Code
Posted on: Friday January 3, 2025
Controller: [crayon-678ae61ea3941600246077/] Password: 1. Created a Helper Function created helper functions for password hashing and verification to reuse them across your application. Create a file [...]
Read MoreIncrease file upload size phpMyAdmin
Posted on: Tuesday December 17, 2024
Step-By-Step Instructions 1. Login to WHM as the root user. 2. Navigate to “”Home / Server Configuration / Tweak Settings”” in WHM. 3. Click on the PHP tab. 4. For the [...]
Read MoreReact के प्रमुख 9 built-in Hooks
Posted on: Wednesday December 4, 2024
useState: State को manage करने के लिए। उदाहरण: const [state, setState] = useState(initialValue); useEffect: Side effects (जैसे, data fetching, DOM updates) [...]
Read MoreHow to restart server in React / Node
Posted on: Saturday November 30, 2024
If you changed something and chnages not reflecting and you want to start server [crayon-678ae61ea3df1827724343/] but if its shows that port is already running then you have first close this port and [...]
Read MoreImage path in React
Posted on: Saturday November 30, 2024
Ensure the image paths (images/logos/APC-(RK).svg, images/cart.png) are accessible: Move the images to public/images or src/assets/images (recommended). Update the paths in your code [...]
Read MoreFont Awesome icon in React
Posted on: Saturday November 30, 2024
Include FontAwesome Your code references FontAwesome icons. To use them: 1. Install FontAwesome: [crayon-678ae61ea4229221041933/] 2. Import the CSS in your index.js or App.js file [...]
Read MoreHTML Template to React JSX
Posted on: Saturday November 30, 2024
You have to convert your html code to JSX, there are online tools for this you can google it. https://transform.tools/html-to-jsx https://codebeautify.org/html-to-jsx-converter 1. Convert HTML [...]
Read MoreReact With Node and Boostrap 5 Setup
Posted on: Friday November 29, 2024
React with node, i want to strat with frontend and backend with for proper manageable structure with boostrap 5 theme. I installed npm and node. what next? To set up a React frontend and Node.js [...]
Read More