Hello, In this tutorial, I am explaining you how to submit HTML form’s fields values/data using jQuery Ajax to PHP file. AJAX is useful for send form data to server site without refresh to page. if you want to send data to PHP file without reload you need to use Ajax request process.Here, I am […]
Month: October 2022
use parseInt() in JavaScript
in this post, I will explain about the parseInt function in JavaScript. how to use parseInt() in JavaScript. parseInt() parses a string and returns as an integer or NaN. The main purpose of use the parseInt function is to extract number from a string. it returns value to an actual number. Syntax : Example : […]
How to Install Magento 2 on Wamp Windows
Hello folks, I am explaining you, if you are looking how to install Magento 2 version(2.3.0) so this post is very useful for you. here you need to have Wamp server installed in localhost and Magento 2.3.0 that requires for PHP(7.2). I am giving you some scratch and step by step process for how to […]
How to use/format dates in ReactJS
I am explaining you, how to use/format dates in ReactJS.ReactJS is a JavaScript library so you can easily use Javascript code. here my current component name is Unity.if you want to use/change dates format so you need to install moment package in ReactJS. below I mentioning you package install command through npm. Example 1 : […]
How to Import Mysql database with use of command line?
I am explaining you, how to Import Mysql database with use of command line.When you have large size of database then you can not easily import from phpmyadmin. so you need to use mysql import command for it. so here I am writing simple command to import large size database using command in ubuntu. Syntax […]
How to use react-bootstrap modal in ReactJS
I am explaining you, how to use react-bootstrap modal in ReactJS.you are familiar with the alert() message box it is visible/show on the header of the page. but it is not interactive. so we need to use bootstrap modal popup in reactJS. it is easily integrate and use in ReactJS application. here my current component […]
How to use Inline & Inline-block display in CSS
I am explaining you, how to use Inline & Inline-block display in CSS. display properly define how the components are going to be place/show. Syntax : Inline-block display an element as an inline-level block container. in inline-block the top and bottom margins/paddings are respected. you can set height and width values of block. Output : […]
How to use react-select in ReactJS
I am explaining you, how to use react-select in ReactJS.in any web project, select/dropdown element is widely used html element. if you want to use select element in ReactJS you need to install first “react-select” package. below I mentioning you package install command through npm. After installed this package on our local project, you need […]
How to pass value from iframe to parent
I am explaining you, how to pass value from iframe to parent end.through iframe creates an inline frame in which we can put another page. We can send values from iframe to the parent page and parent to iframe side with the use of javascript code. In this example I am sending value from iframe […]
Magento 2 useful command Part 3
if you are magento 2 developer so this post is helpful to you. before I created one blog called “Magento 2 useful command Part 1” so I mentioned some command related to Cache, Admin, Modules, Indexer and Info commands. in second blog “Magento 2 useful command Part 2” I mentioned some command related to Store, […]