
Search In
Hello Readers,
Today we will discussed about BuddyPress template customization.
If you want customization to buddyPress template then you need to follow below steps.
1.) Need to adding a Child Theme if you haven't done so already.
2.) Need read t
What does array_keys() function in php.?
The array_keys() function returns an array containing the keys.
Syntax of array_keys() function:
array_keys(array,value,strict)
So, there are three main Parameter of array_keys().
These are following:
1-arr
What does array_rand() function in php.?
The array_rand() function returns a random key from an array, or it returns an array of random keys if you specify that the function should return more than one key.
Syntax of array_rand() function:array_ran
BETWEEN operator is used to test an expression within a range. Syntax of BETWEEN operator is as follows:
expr (NOT) BETWEEN begin_expr AND end_expr
-Here expr, begin_expr and end_expr is an expression which must return values.
-BETWEEN operator r
As we know that CURL is a library that allow us to make requests(HTTP requests) in PHP.
We can upload a file as well using CURL. For upload a file using CURL must follow below points :
Uploading file size is mandatory to be less
than file allowe
Hello Reader's!, If you need a nice method to stop the form from again and again submit via refresh, PHP offers you many ways like header redriect or unset the $_POST but a pretty way is to implement a unique ID into the post and cache it in the
Le
Hello Reader's! If you want send an email with secure SMTP with you should choose google gmail smpt.
And the code liberary is here:-
$mail = new PHPMailer(); // create a new object
$mail->IsSMTP(); // enable SMTP
$mail->SMTPDebug =
If the create method is successful, the value associated to the request key will be a dictionary containing various information about the created request:
1-id: the request id
2-key: your private key for this request
For example code is like below.
Using below code i have created Linkify function. Here I have created MainActivity class and In main.xml layout I have added Text View property. Below code will clearly described you how to make Linkify function.
Step(1)-Create MainActivity-
publi
If you are looking to know about the difference between px,dp,sp , here it is:-
px(Pixels) :-
px corresponds to actual pixels on the screen.
Pixel is the smallest element of a picture represented on the screen.
dip Density-independent Pix
