
Search In
Hi Reader's,
Welcome to FindNerd, today we are going to discuss how to check validate url in php ?
If want to check validate url in php then you can use FILTER_VALIDATE_URL.This is filter validates a URL.
you can see below example
<?php
Hi Reader's,
Welcome to FindNerd, today we are going to discuss how to removes a directory in php ?
If you want removes a directory then you should use The rmdir() function that is removes an empty directory.
The rmdir() function returns "TRU
If we are required to delete a record, cakephp 's model class offers a way for the same.
Deleting the record with the perticular id can be done by using delete() function :
delete(integer $id = null, boolean $cascade = true);
The above statemen
To convert hexadecimal values to ASCII characters we will use a PHP function hex2bin().
Syntax:
hex2bin(string);
In above line we have a passed a parameter string in the function which is basically the hexadecimal value that we need to convert t
All the content are treated as a simple text at when you send a text message using Python. Even if you include HTML tags in a text message, it will display as simple text and HTML tags will not be formatted according to HTML syntax. But Python provid
For sending and retrieving data through AJAX calls can be done with the help of web method .
We first create a web method that needs to be invoked when event is fired.
This will be the code behind page :
[WebMethod]
public static string
Hello Friends,
Here we will discuss about custom login functionality in Wordpress. Please follow the below example to build custom login functionality in Wordpress:
$userCredential = array();
$userCredential['user_login'] = $_POST['username']; //ge
Hello Friends,
If you are looking to create project on CakePHP 3 with the help of composer. This problem might be encounter "- cakephp/cakephp 3.1.7 requires ext-intl * -> the requested PHP extension intl is missing from your system".
To resolv
Hi Reader's,
Welcome to FindNerd, today we are going to discuss how to use glob() function in php ?
Basically the glob() function is used for returning an array of filenames or directories matching a specified pattern.
The glob() function retur
Hi Reader's,
Welcome to FindNerd, today we are going to discuss how to use link() function in php ?
Basically the link() function is used for creating a hard link from the existing target with the specified name link.
The link() function alway
