In this post, we are going to introduce you to a PHP script that will list the movies and users can see the trailers videos of the movies. This is the Movie Video Trailers and Info PHP Script developed by CodeSpeedy and using the TMDB API key to retrieve the movie data. TMDB or The Movie […] Read More
There are some ways to make a particular content of a webpage password protected with PHP. Even we can use JavaScript to do that. But that is not secure enough because that is a cl.... Read More
This post gonna be very useful for those people who are interested to learn how to create a database connection using PHP with MySQL as well as how to Insert Data into MySQL Table .... Read More
We can check if a URL is a valid YouTube video link or not easily in PHP using the parse_url() function. The parse_url is the inbuilt function of PHP that is supported by PHP 4 and.... Read More
Today we are going to see a nice PHP trick. Here in this tutorial, we will see how we can create visual star rating depending upon the value from 0 to 5 in PHP and using the font a.... Read More
In this PHP related post, we are going to see how to check if a string contains a particular word inside it. We are going to do it in PHP. We may be needed to find the availability.... Read More
Suppose we have a string of mathematical expression and we need to calculate and then get the value of the expression using PHP. How can we do it? Now, we are going to learn how to.... Read More
We can delete or remove array element from an array easily. Using the unset() PHP function, we can delete or remove one element from an array. We can delete multiple array elements.... Read More