PHP
Iframe in html with examples
An iframe (short for “inline frame”) is an HTML element that allows you to embed another HTML document within the current document. This can be useful for displaying external content, such as a video from YouTube, a map from Google Maps, or a form from another website. The basic syntax for an iframe is as … Read more
Complete user registration system using PHP and MySQL database
Welcome guys, in this post you will learn Complete user registration system using PHP and MySQL database Create database of name ‘registration’. In the database also create a table called users. The users table consist of four fields. id username – varchar(100) email – varchar(100) password – varchar(100) You can create this using a MySQL client like PHPMyAdmin. … Read more