Transmit SMS API use with PHP cURL. Send SMS by using API to retrieve information about messages and campaigns. Below the PHP code for how to use Transmit SMS API. […]
Text Replace By Define Simple Function in WordPress
Text replacement in WordPress By Define Simple Function In WordPress replace text by define function in function.php file. By this code allow to easily define text or HTML that replace […]
JavaScript Spread Operator
JavaScript Spread Operator const array =[1,2,3,4]; const arrayTwo = […array, 4]; console.log(arrayTwo); const person = { name:’Brad’, age:36 } const newPerson = { …person, email: ‘mailmyfreeonlin[email protected]’ } console.log(newPerson); You […]
HTML 5 Page Structure | HTML 5 Code Layout
Sample Code for HTML 5 Page Structure <!DOCTYPE HTML> <html> <head> <meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″ /> <meta name=”viewport” content=”width=device-width”> <meta name=”viewport” content= “width=device-width, initial-scale=1.0”> <title>HTML 5 Page Title</title> </head> <body> […]
Upload Image By Ajax Using jQuery FormData Without Submit Form
Image Upload By JQuery Ajax and PHP File uploading by jQuery Ajax, PHP, and HTML it’s a common feature for the dynamic application but sometimes when form submitted page got […]
Create an Accordion with HTML and jQuery
Simple Accordion with HTML & JQuery An accordion used to create FAQ and Question & Answers. A vertical accordion is the show list. Each item can be expanded or collapsed […]
Send Mail by JavaScript AJAX PHP Mail Function by Submit form
JQuery AJAX and PHP Code for Contact Form Ajax (Asynchronous JavaScript and XML) means by send or receive data with the server without refreshing or reloading the web page. In […]
Put Multiple Properties of CSS in jQuery
Put Multiple Properties of CSS in jQuery jQuery(‘container’).children().css({‘color’:’pink’, ‘background-color’:’blue’, ‘font-family’:’arial’, ‘font-size’:’20px’});
Get selected uploaded file name in input file by jQuery without fake path
Uploaded file value comes with a fake path, how to get filename without a fake path. In this code, how to get filename without full path, only use the file […]
How to add blog post title or heading in WordPress Single Blog
How to add blog post title or heading in WordPress Single Blog <h2><?php single_post_title( ‘Current Open Post: ‘ ); ?></h2>