mysqli connect php
The PHP mysqli connect function is used to connect MySQL database server. This function was introduced in PHP Version 5 and works works in all the later versions.
Read MoreHow to Convert Number To Words Using PHP
Using PHP Convert given number into words And you can also change the words in function code By using given code. we can convert the number into words using this code.
Read MoreCall to undefined function form_open_multipart() in Codeigniter
If you got this error and in codeigniter while add form. you should to load the form helper in you Controller add the following line before loading the view: $this->load->helper(‘form’);
Read MoreCall to undefined function wp_should_skip_block_supports_serialization
if you have the same fatal error from your website, try to update wordpress manually from admin panel or changing the wp-include folder files manually from FTP.
Read MoreHow to Connect to a Remote MySQL Server Using PuTTY
To connect to a remote MySQL server, you’ll need its IP address and .ppk file to connect to remote server. Setting Up the Tunnel of PuTTY Download PuTTY. Save PuTTY to your desktop. Double-click the PuTTY file to begin – no need to install. You will see the following window: Enter the hostname or IP Read More »
Read MoreHow can get wordpress plugin old version
1) Go to your plugin’s WordPress page. 2) Once you’ve found your plugin’s page, click Advanced View. 3) Scroll down to Previous Versions and choose your desired version. Press Download and that’s it!
Read MoreHow can I get basepath in CodeIgniter
You can find short definition in CodeIgniter. EXT: The PHP file extension FCPATH: root path of CI SELF: The name of THIS file (index.php) BASEPATH: Path to the system folder APPPATH: path to the “application” folder For Example: SELF = index.php Use this for path of your root folder FCPATH = C:\xampp\htdocs\your_root_folder\ Use this for Read More »
Read MoreHow to generate QR Code
The Google Chart API URL for generate QR Code with following query parameters: it is fine to use the standard URL https://chart.googleapis.com/chart?. cht = qr (required param, defines to have a type as QR code) chs = width x Height (it is also a required param and defines the image size to generate) chl = Read More »
Read Moreinstall CakePhp 3 without Composer/manually
You can download or check latest version of cake php https://github.com/cakephp/cakephp/releases You can install CakePhp 3 without Composer. You need minimum requirements to install CakePhp 3. Requirements Server HTTP Server. For example: Apache. Having mod_rewrite is preferred,but by no means required. PHP 5.4.16 or greater. mbstring extension intl extension Database : MySQL (5.1.10 or greater) Read More »
Read MoreHow to change the Sender Name and Email address in an outgoing WordPress email?
How to Change Sender Name and Email address Using coding. for change sender Sender Name and Email address manually, you need to add the following code to functions.php file within the “wp-content/themes/theme_name” folder. if you’re using a child theme, you should edit the child theme functions.php file and add the following code.
Read MoreHow to detect a mobile device in jQuery?
You can use the JavaScript window.matchMedia() method to detect a mobile device based on the CSS media query. This is the best way to find out mobile devices screen size.
Read Morewordpress auto redirect user after logout
How To Auto Redirect Users After Logout In WordPress We can easily redirect users after logout to the homepage of WordPress site by adding following code to functio.php file: You can also set a custom internal or external URL by using this code: Replace Url with the new URL where you want users to be Read More »
Read MorePHP Interview Questions and Answers
1. What is PHP? PHP is a web language based on scripts that allow developers to dynamically create generated web pages. 2. What do the initials of PHP stand for? PHP means PHP: Hypertext Preprocessor. 3. Which programming language does PHP resemble? PHP syntax resembles Perl and C 4. What does PEAR Read More »
Read More