Top 10 worst male health habits

From workouts to healthy diets, many of us make an effort to look after ourselves. However, we could be compromising our health on a daily basis without even knowing it. From bottling things up to eating fast food, here are the top 10 male habits you should try to break.

Avoiding the doctor

Research by the charity Men’s Health Forum has revealed that men are 20% less likely than women to visit their doctor, despite the fact that they have shorter life spans than women and are more likely to die from cancer. While visiting the doctor is rarely a pleasant experience, diagnosing most illnesses early increases rates of survival, so stop ignoring those symptoms and give your doctor a call.

Not doing self-checks

Just like with visiting the doctor, many men avoid doing necessary health self-checks due to fear, denial of the risks, or confusion over what to do. However, it is vital that men check themselves regularly for signs of testicular cancer as incidence of the disease is on the rise, particularly in young and middle-aged men. If you are not sure how to go about checking yourself, visit a reputable website or ask your doctor for tips on performing these necessary checks.

Binge drinking

men-beer_430

Although women are rapidly catching up with men in the drinking stakes, binge drinking is still more common among men than women, and there are consistently higher rates of alcohol-related deaths and hospitalisations in men.

Binge drinking not only affects long term health, but it puts your immediate safety at risk and can also lead to rapid weight gain. To safeguard your health, it’s important to stick to recommended limits and drink in moderation.

Bottling things up

On the whole, men are less likely than women to talk about their feelings, express emotion or ask for help and support. Perhaps as a consequence of this, men are half as likely as women to be diagnosed with depression, yet are 77 per cent more likely to commit suicide.

Depressed men are also twice as likely as depressed women to resort to alcohol and drug abuse. Bottling up anger is just as detrimental to men’s health, with research suggesting that men who don’t express their anger increase their risk of a heart attack.

Stressing over work

While men and women are equally exposed to workplace stress, according to a survey of 3,000 workers by Medicash, men are four times more likely than women to take a sick day due to work related stress and are twice as likely to turn to alcohol to help deal with it.

As workplace stress can be an important factor in the development of depression, heart disease and stroke, it is vital to seek a way to resolve your feelings and ease your stress; whether it is by talking to your boss, changing your job or seeking professional help.

Taking hot baths

Many men enjoying soaking in the tub, but for all those trying to conceive it may be time to swap those long baths for showers. Researchers from the University of California, San Francisco, found through their three-year study that having hot baths can significantly reduce male fertility.

As sperm develop best in cool surroundings, men should avoid any activity that leads to overheating this area, including sitting in hot tubs or Jacuzzis and regular, prolonged use of laptops.

Not applying sun cream

Although skin cancer is the most common form of cancer in the UK, multiple research studies have shown that few of us regularly wear sunscreen, and that men are the worst offenders.

According to research by Mintel on sun cream use in France, Germany, Spain and the UK, an average of 52 per cent of women use sunscreen, compared to only 37 per cent of men. However, with many men spending significant time outdoor for sports, work or leisure, it is vital to cover up with appropriate clothing and sun cream before heading outside.

Poor bathroom hygiene

Do you wash your hands after you’ve visited the bathroom? According to a study by the American Society for Microbiology and the Soap and Detergent Association, one in three men don’t! Furthermore, a study by the London School of Hygiene & Tropical Medicine carried out at UK service stations found that only a third of men washed their hands with soap. Not washing your hands is the quickest way to spread germs and infection, so protect your health and those around you by making sure you lather up before leaving the bathroom.

Not brushing their teeth

According to a study by the American Dental Association, only 66 per cent of men brush their teeth twice or more a day, compared to 86 per cent of women. Furthermore, research findings published in the Journal of Periodontology showed that women are almost twice as likely to have regular dental checkups than men. Failing to look after your pearly whites is not only bad news for your teeth and gums; research has shown that gum disease can increase risk of heart disease, erectile dysfunction and dementia.

Eating fast food and takeaways

In today’s fast food culture, many of us are guilty of hampering our weight loss by indulging in too much junk food, and this is particularly true for men. A survey by Pew Research Center revealed that 47 per cent of men eat in a fast food restaurant at least weekly, compared to 35 per cent of women. With an average takeaway containing over half your recommended daily calories and copious amounts of salt, do your health a favour by cutting back on takeaways and replacing with home-cooked meals.

Move (Copy) Div From One Place To Another Using jQuery

Hello Friends if you want to copy or move the data from one div to onther div you can do it easily with jquery.I can do it by creating new HTML and append it to Active records list. But i came to know about Clone functionality of jQuery, Which is best thing to move or copy any html element.

here are two possibility in Clone function of jQuery. If you want to keep the Div at their place and create the same Div at some other place than you can go for Clone. If you want to Move the Div from one place to another than use appendTo. Look at below syntax.

$(“div#source_div_id”).appendTo(“div#destination_div_id”);

Find Number of Child Elements (Length) Using jQuery

Hi Friends, Some days ago I was working on one task in which I was trying to find number of child elements by id or class of parent element by jQuery. I searched about it and found solution for it, So I thought it is worth to share on my wesbite for users, So it can be helpful for anyone and save time for someone.

So below I am going to show to show you can find number of child elements using jQuery.

$(“div#parent_div”).children().length

So by above code you can find number of child elements by id of parent element. In above code id of parent element is “parent_div” , So if you will use this code you will get number of child elements inside this parent.

So by above code you can find number of child elements by id of parent element. In above code id of parent element is “parent_div” , So if you will use this code you will get number of child elements inside this parent

5 useful url rewriting examples using .htaccess

1) Rewriting product.php?id=12 to product-12.html
It is a simple redirection in which .php extension is hidden from the browser’s address bar and dynamic url (containing “?” character) is converted into a static URL.
RewriteEngine on
RewriteRule ^product-([0-9]+)\.html$ product.php?id=$1
2) Rewriting product.php?id=12 to product/ipod-nano/12.html
SEO expert always suggest to display the main keyword in the URL. In the following URL rewriting technique you can display the name of the product in URL.
RewriteEngine on
RewriteRule ^product/([a-zA-Z0-9_-]+)/([0-9]+)\.html$ product.php?id=$2
3) Redirecting non www URL to www URL
If you type yahoo.com in browser it will be redirected to http://www.yahoo.com. If you want to do same with your website then put the following code to .htaccess file. What is benefit of this kind of redirection??
RewriteEngine On
RewriteCond %{HTTP_HOST} ^optimaxwebsolutions\.com$
RewriteRule (.*) http://www.optimaxwebsolutions.com/$1 [R=301,L]
4) Rewriting yoursite.com/user.php?username=xyz to yoursite.com/xyz
Have you checked zorpia.com.If you type http://zorpia.com/roshanbh233 in browser you can see my profile over there. If you want to do the same kind of redirection i.e http://yoursite.com/xyz to http://yoursite.com/user.php?username=xyz then you can add the following code to the .htaccess file.
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ user.php?username=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ user.php?username=$1
5) Redirecting the domain to a new subfolder of inside public_html.
Suppose the you’ve redeveloped your site and all the new development reside inside the “new” folder of inside root folder.Then the new development of the website can be accessed like “test.com/new”. Now moving these files to the root folder can be a hectic process so you can create the following code inside the .htaccess file and place it under the root folder of the website. In result, http://www.test.com point out to the files inside “new” folder.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^test\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.test\.com$
RewriteCond %{REQUEST_URI} !^/new/
RewriteRule (.*) /new/$1

MySQL Injection Attacks

As a PHP developer, I work quite a bit with MySQL database tables, both in the course of developing new websites / web applications, as well as modifying or adding features to existing websites.
One thing that always surprises me when working on code written by others is how frequently the code is subject to what is called MySQL Injection Attacks.
MySQL Injection Attacks are basically where, due to poorly written code, hackers can execute custom MySQL commands (that the developer did not wish the script to be able to execute). These hacks can range from deleting all data in a database table, to logging in as a user, to even stealing data from databases in certain cases.
Well-written MySQL queries can easily prevent such attacks. However, many developers, either out of ignorance or, well, laziness, just don’t properly write their queries.
Let’s back up a few steps here. Some servers, especially in past years, have had a PHP option called Magic Quotes (deprecated as of PHP 5.3.0) enabled. This option automatically “escapes” special characters in data that users submit, say, through a web form.
This escaping is necessary on all user-submitted data that is used in a MySQL query. However, setting the server to automatically escape all user-submitted data is problematic for several reason.
A much better way of doing it is to escape each piece of user-submitted data right when it is inserted into the query. Most MVC frameworks which contain some database model have their own custom-named function that can do this for you.
For those of you who are writing in raw PHP code, PHP has a built-in mysql_real_escape_string function, which you can use to obtain the same results (many custom database libraries use that function).
Anyway, there is no excuse for programmers to not take this small, basic step in securing their web applications, so make sure you take advantage of the tools at your disposal here.

Having Clause – MySQL

The HAVING clause is used in combination with the GROUP BY clause. It can be used in a SELECT statement to filter the records that a GROUP BY returns.
The syntax for the HAVING clause is:
SELECT column1, column2, … column_n, aggregate_function (expression)
FROM tables
WHERE predicates
GROUP BY column1, column2, … column_n
HAVING condition1 … condition_n;
aggregate_function can be a function such as SUM, COUNT, MIN, or MAX.

Import Unicode CSV Files T MySQL

Unicode UTF-8 comma-separated values (CSV) text files, which are exported or generated by such applications as Microsoft Access or Excel, can be imported to MySQL via LOAD DATA INFILE command. CSV data files that are in a Vietnamese legacy encoding should first be converted to Unicode UTF-8, using UnicodeConverter tool, before proceeding with the import.

Make sure that MySQL default charset is utf8. You may need to create the schema (i.e., database structure and tables) before executing the LOAD DATA command. This can be accomplished manually or by MySQL Migration Toolkit to re-create the schema in MySQL database and then use TRUNCATE command to clear the table (delete all rows) before importing. For example:

mysql> TRUNCATE TABLE authors;

or

mysql> DELETE FROM authors;

The import will be executed as follows:

mysql> LOAD DATA LOCAL INFILE ‘authors.txt’ INTO TABLE authors FIELDS TERMINATED BY ‘,’ ENCLOSED BY ‘”‘ LINES TERMINATED BY ‘\r\n’;

for a CSV file ‘authors.txt’ with records having data fields as follows:

“authid”,”lastname”,”firstname”,”address”,”city”,”country”,”phone”,”email”
1,”Nguyễn”,”Trần”,”Lý Thường Kiệt”,”Sài Gòn”,”Việt Nam”,”848-999-9999″,”nguyentran@yahoo.com”
2,”Lê”,”Lý”,”Phố Quang Trung”,”Hà Nội”,”Việt Nam”,”848-888-8888″,”lely@yahoo.com”

The line terminator ‘\r\n’ is for Windows systems; for Unix/Linux, ‘\n’ is used.

5 G’s To Grow A Great Life

Greatness arises out of a deliberate attempt to do the small on a consistent basis with a touch of excellence.

It is true that those who are faithful, with the ‘little’ that they possess in life, are better equipped to handle the ‘large’ when it is finally unveiled to them.

In addition, another truth is often revealed, that when you need something done then ask a busy person. They are the possessors of the skill-set and the discipline-set that will allow them to prioritize and delegate all the way to success.

But please allow me to share with you the five G’s that will position you so that you can begin to grow a great and deliberate life.

1. Grab A Goal

Without a goal your life will be aimless. But in your grabbing do the following…

1. Write your goal down and write it down as it has already been achieved.
2. Set a date for the achievement of that goal.
3. Divide the larger goal into smaller and manageable chunks that will allow you to achieve sub-goals along the way.
4. Get into action immediately

2. Grasp An Opportunity

Opportunity, as I think either Thomas Edison or Henry Ford said, usually appears with its sleeves rolled up. That means work.

Don’t just sit around waiting for your next opportunity. Make your opportunity. Be the maker and not just the taker – it is only your imagination away. If you can think it you can find a way to do it.

3. Grip & Never Let Go Of Life

Any dream fulfilled may require some gutsy effort. Persistence. Perseverance. Push. Press on. Once you’ve grasped and grabbed it’s time to grip.

Face each new challenge with the ‘can do’ attitude and the ‘I will find a way’ determination. You are worthy of great success, and success is for the gripper.

4. Grin & Make It Your Practice To Laugh

Smile your way all the way to success. Enjoy the journey. Always see the funny side of things. Have fun. Celebrate each small achievement. Party amidst the potential.

Share the joy with your fellow travelers including your family and friends. Laugh in the face of faith and even in the face of fear – for it will sustain and energize you.

5. Greet Each Day With A Thankful Heart

I recently watched an interview of a young man who became a quadriplegic as a direct result of a helicopter accident. His positive attitude shone throughout the interview. So what do I as an able-bodied male, have to worry about. I have so much to be thankful for, and so do you.

Greet each day with a sense of gratitude. While ever you and I have breath in our body we have so much to be thankful for. Take a regular thankful stock-take of your life and all complaints will dissipate.

Go on! Grab, grasp, grip, grin and greet. Five G’s with the greatest of ease to destroy the disease of desperation and construct the deliberate life.