In this tutorial I’m going to show you how to find a word or a sentence is a Palindrome in PHP. You may find scripts
Category: Programming
Are you a school / college student? then you are at the right place to learn something new. Today you are going to learn how to
This question often asked in interviews, this looks like a simple question but you know many times I failed in Interviews just because of this kind
In this tutorial I’m going to teach you how to get the Current Page URL (Full URL) in PHP, if you already know about $_SERVER array then
We all know both the functions include and include_once in PHP will insert the content of the PHP file into another PHP file. Sometimes people may ask
This post explains you how to use two or more submit buttons in a single HTML form using PHP technology. HTML Part:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<html> <head><title>Two Submit buttons in a Single Form!</title></head> <body> <form action="" method="post"> <h2>Two Submit Button with PHP</h2> <input type="submit" name="submit1" value="btn1" /> <input type="submit" name="submit2" value="btn2" /> </form> </body> </html> |
See the
Have you ever tried switching PHP version for a single website if you hosted multiple websites in a hosting?. Using .htaccess you can easily switch
The title looks silly but many of us does not know the answer even experienced PHP developers struggle sometime!! Yes, it is true but printing
Have you ever tried refreshing a page with PHP? Most of the time we do refresh the page with either meta tag http-equiv=REFRESH or JavaScript.
If you are a PHP programmer you could have used header() function plenty of times redirecting a page to another page right? for eg:
1 2 3 4 5 |
<?php header('Location: newpage.php'); ?> |