Emmy Britt

Emmy Britt I develop service for customers of all sizes, specialising in creating modern websites & mobile apps.

22/03/2022

Being a developer is interesting πŸ˜„...

When someone asks me "How many languages do you know?" My first thought isn't English etc. I think computer languages

When someone mentions git, I don't think Gastrointestinal Tract. I think version control.

When someone mentions "fork" or "f**k", my first thought is forking a repo

When someone says "react", I don't think react, I think React 🀣

When I hear "ruby", I don't think ruby, I think Ruby! πŸ€£πŸ€¦β€β™‚οΈ

When someone says "view", I think Vue🀣

When someone mentions types, I automatically think of TypeScript

Here's an interesting one:

When someone mentions "parent" and "child"

I think parent and child processes, parent and child components πŸ˜„

Being a developer is so interesting πŸ‘Œ

20/03/2022
20/03/2022

7 Tips to Keep Your Motivation – Even When It Gets tough
1. Know why you want to code. ...
2. Define your coding goal and visualize it. ...
3. Have a clear plan. ...
4. Break down goals. ...
5. Keep coding fun. ...
6. Keep track of your success. ...
7. Code something you want to share.

11/02/2022

Real engineers needs no valentine

To become successful in life, you need to buy the following keys: 1. Be diligent2. be loyal to yourself and others3. Be ...
09/12/2021

To become successful in life, you need to buy the following keys:
1. Be diligent
2. be loyal to yourself and others
3. Be able to communicate and socialize
4. Be a learned
5. Be disciplined
6. And be diligent.
All this are basic principles of success,
Believe me if you don't have all this, you can never make it. πŸ€ΈπŸƒ

Happy new month and merry Christmas in advance to my fans. I'll be doing 500 airtime giveaway to three people at random....
09/12/2021

Happy new month and merry Christmas in advance to my fans. I'll be doing 500 airtime giveaway to three people at random... Just drop a comment below and write your network, your name and phone number. Big love from Emmy Brit. Like and follow my page πŸ™πŸ™πŸ˜”β˜οΈβ˜οΈ

Am planning on resuming my online class on software development, that will include the following courses, HTML CSS boots...
22/11/2021

Am planning on resuming my online class on software development, that will include the following courses, HTML CSS bootstrap, PHP, mysql, and jQuery, very soon, interested participants should should join this page https://www.facebook.com/104304425368656/posts/122895950176170/?app=fbl
Or visit the website

This is infotechnology on education, economics, trade network and programming were you receive latest and reliable information, about the world evolving round us.

New e-commerce website design done and dusted βœ…βœ…... Features
03/10/2021

New e-commerce website design done and dusted βœ…βœ…... Features

03/07/2021

PHP PAGINATION

In this tutorial, i will explain what PHP PAGINATION is and how we can create simple pagination using PHP and MySQLi. If you actually work with SQL workbench and fetch multiple records from database, then you have seen that it is not good idea to list all the records in a very single page specially when your records are thousands in number. So instead of that with inchoate PHP PAGINATION just to make it easier. the best approach is to split these records into multiple pages so that user can easily view or read these records.

What is Pagination?
Pagination mean fetching and displaying your data into multiple pages rather than single page. You have already seen this on various blogs, even on my blog homepage, you can see that I am only displaying 4 to 5 blog posts and older posts are accessible via pagination.

How to Create Simple Pagination Using PHP and MySQLi
Basically we need to fetch limited records on each page, this mean we need to limit the number of records to be fetched. For this purpose, MySQL provides a LIMIT clause, it simply fetch the limited number of records. I have created a sample table named `pagination_table` which you can download from the download button and import into your database. Lets see how LIMIT clause works, just run the following query.

SELECT * FROM `pagination_table` LIMIT 3;
It will give you the following result.

As you can see above that it only returns 3 records, however table contain total 36 records in it. But if we need to fetch the records starting from 5th to 7th then we will use OFFSET in MySQL query, there are two different ways to use the OFFSET, however both will return the same records, you can use anyone that you like.

SELECT * FROM `pagination_table` LIMIT 3 OFFSET 4;
Or you can use shorthand method as well.

SELECT * FROM `pagination_table` LIMIT 4, 3;
These both queries will return the following records.

The difference between both queries that in first method you write LIMIT value after LIMIT and OFFSET value after OFFSET, but in shorthand method you write OFFSET value after LIMIT clause and LIMIT value after

03/07/2021

How to design a navigation bottom border

To design a simple navigation border bottom one would need to incorporate a little or no JavaScript... All you just need to add is a CSS property called the hover, and set the kind of borders you want, but in this case, I want a border bottom line to be displayed underneath the link when I hover through. So I will make use of the hover property on the particular link I want it to hover on, then set the border bottom as any value you want to have......

Below is an example source code...






body {margin:0;}
topnav {
overflow: hidden;
background-color: ;
}
topnav a {
float: left;
display: block;
color: black;
text-align: center;
}
topnav a:hover {
border-bottom: 3px solid red;
}
topnav a.active {
border-bottom: 3px solid red;
}
The HTML will look like this


Home
News
Contact



Border Links
Hover over the links.




order Links
Hover over the links.





One can also emphasized more on the active, it can also be used to well for creating event or to make something happen when something is being done....

Send a message to learn more

Address

Lagos

Alerts

Be the first to know and let us send you an email when Emmy Britt posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Emmy Britt:

Share