This is a simple tutorial to reverse order words in a Sentence. For example, here I’m taking Hello World to World Hello. To make this happen we have to use some PHP functions. First of all, I’ll convert this string into an array. After that, I’ll reverse the array. Then convert that array into a […]
Continue readingSimple Pagination Script in PHP & MySQL, this script will explain you how pagination system is created in PHP & MySQL. Pagination is a sequence of pages to break number of results into small bytes in each page. We can limit these results based on our requirement. Here I’m not working with a huge list, […]
Continue readingThis is simple CRUD Application in PHP & MySQL. In this tutorial, you can learn CRUD operations in PHP & MySQL. CRUD stands for create, read, update and delete. Create means inserting data into database using INSERT SQL statement. Read means reading data from database using SELECT SQL statement. Update means updating records using UPDATE […]
Continue readingHere I’m going to work on PHP Mailer to send emails. PHP Mailer is one of the most popular open source PHP library to send emails with. Before start using PHP Mailer, we have to download PHPMailer and extract these files inside our project directory to include these files in our project to send emails. […]
Continue readingGet Gravatar Image using PHP, We can get this by simply generating gravatar URL with email id. Then use this URL in image source attribute to display gravatar image in the browser. First of all, store email address in a variable. Remove any spaces in email address using trim PHP function. And convert all the […]
Continue readingThis is simple and powerful CAPTCHA script, using this script I’m going to generate a random number and then creates an image. If the user submits the form with correct captcha value, then you can proceed with next statements like inserting data into the database or sending an email. 5 Steps to Add “No CAPTCHA […]
Continue readingIf you want to add google new reCAPTCHA (I’m not a robot). This captcha system is used to stop spam registrations or inquiry submissions. You can integrate this “No Captcha reCaptcha” in your website by following these simple steps. First of all create the google reCAPTCHA access credentials, After getting site key & secret key […]
Continue readingThis is simple PHP WHOIS script that you can understand easily. You can add advanced features to this script. This is a simple php whois script that can be easily understood. Here in this script I’ll be using only one server that is of .com domain. You can use different whois servers, I’ve provided the […]
Continue readingThis is simple PHP Contact Form to send E-Mail through your website’s contact page. First, we should have an HTML form to collect data from users. And this data should be sent to PHP for sending email. This form should contain these elements, you can add more input fields also based on your requirement. I’m […]
Continue readingThis is a simple File Upload Script in PHP & MySQL, uploading file into the server and also inserting uploaded file information into the database. And also we are writing validations for uploading file with size restrictions & file extension validation. Here I’m using Image format restriction, you can use any file type you want […]
Continue reading