php development marbella Tag

PHPGURUKUL TURN’S 5 YEAR’S OLD

PHPGURUKUL TURN’S 5 YEAR’S Today is the fifth anniversary of PHPGurukul and this achievement is the result of combine effort of every individual. At this event, I want to thank each and every one of you for being an important part of PHPGurukul. Some achievements  are Below: PHPGurukul

Zoo Management System Using PHP and MySQL

Project Name Zoo Management System Language Used PHP5.6, PHP7.x Database MySQL 5.x User Interface Design HTML, AJAX,JQUERY,JAVASCRIPT Web Browser Mozilla, Google Chrome, IE8, OPERA Software XAMPP / Wamp / Mamp/ Lamp (anyone) In this project there are two module i.e. UserAdminUser: User can only visit the website , check the zoo related information. Admin: Dashboard:

Theme Park Management System Using PHP and MYSQL

Project Name Theme Park Management System Language Used PHP5.6, PHP7.x Database MySQL 5.x User Interface Design HTML, AJAX,JQUERY,JAVASCRIPT Web Browser Mozilla, Google Chrome, IE8, OPERA Software XAMPP / Wamp / Mamp/ Lamp (anyone) In this project there is one module i.e. Admin Admin: Dashboard: In this section, admin can see total entry ticket, normal entry tickets

HTML Lists

A webpage is sorted and indexed as one of the best ways to present information. Two kinds of lists can be be made through HTML. Ordered ListUnordered ListUnordered Lists < ul type = “disc/circle/square”> <li>…….</li> <li>…….</li> <li>…….</li> <li>…….</li> </ul> type = “disc” sets a solid disc. type = “circle” sets an empty circle.

Types of CSS

Inline Style CSS Inline Style can be assigned to the style attribute of any html tags. <tag style = “attribute: value”>…..</tag> “tag style = “attribute: value”” specifies the attribute and its value for some tags’s contents. Example <html> <p style =”color:blue;font-family:Calibre;font-size:30px”>Text Sample</p> </html> Output: Text Sample Explanation: “color:blue;font-family:Calibre;font-size:30pt” specifies the text color as blue, font family

What is CSS ?

CSS stands for Cascading Style Sheets. CSS is the language for describing the presentation of Web pages, including colors, layout, size and fonts and its stands for “Cascading Style Sheets.” It describes how HTML elements are to be shown on screen, paper, web page, or any media. Example <html> <h1 style=

Online Dance Classes Registration System Using PHP and MySQL

Project Name Online Dance Classes Registration System Language Used PHP5.6, PHP7.x Database MySQL 5.x User Interface Design HTML, AJAX,JQUERY,JAVASCRIPT Web Browser Mozilla, Google Chrome, IE8, OPERA Software XAMPP / Wamp / Mamp/ Lamp (anyone) Download Online Dance Classes Registration System in Rs 429/$5.69 The main objective of developing this project is to provide an

AC Repairing System Using PHP and MySQL

Project Name AC Repairing System Language Used PHP5.6, PHP7.x Database MySQL 5.x User Interface Design HTML, AJAX,JQUERY,JAVASCRIPT Web Browser Mozilla, Google Chrome, IE8, OPERA Software XAMPP / Wamp / Mamp/ Lamp (anyone) In this project, we use PHP and  MySQL database. It has three modules Admin Technician Users Admin Module Admin is the superuser of the website who can manage

HTML Table

Table contains columns and rows which are used to show the data in HTML. <table></table> are table tags. <table border=value></table> creates a table with borders. <tr></tr> are row tags. <td></td> are cell tags. Example: <html> <table border="1"> <tr> <td>Cell 1</td> <td>Cell 2</td> <td>Cell 3</td> </tr> <tr> <td>Cell 4</td> <td>Cell 5</td> <td>Cell 6</td> </tr> </table> </html> Output: Explanation: <table border="1"> creates a table with the border