Wikitechy

WRITE FOR US
  • TUTORIALS
  • TECHNOLOGY
    • ALL TECHNOLOGY
    • ARTICLES
  • FULL FORMS
  • WEBINARS
  • ERRORS & FIXES
  • INTERVIEW
  • FORUMS
  • VIDEOS
    • QUANTITATIVE APTITUDE
    • NON VERBAL
    • GROUP DISCUSSION
    • ENGINEERING
  • CAREERS
    • HR INTERVIEW QUESTIONS & ANSWERS
    • GD INTERVIEW
    • RESUME SAMPLES
    • ENGINEERING
    • APTITUDE
    • REASONING
    • COMPANY QUESTIONS
    • COUNTRY WISE VISA
    • VISA DRESS CODE
    • LETTERS
  • BUSINESS
    • TOP WEB HOSTING
    • TOP CAR ACCIDENT LAWYERS
    • TOP CAR INSURANCE
    • TOP SOFTWARE TOOLS
    • TOP 10
    • LUNG CANCER
  • PROJECTS
Wikitechy
  • TUTORIALS
  • TECHNOLOGY
    • ALL TECHNOLOGY
    • ARTICLES
  • FULL FORMS
  • WEBINARS
  • ERRORS & FIXES
  • INTERVIEW
  • FORUMS
  • VIDEOS
    • QUANTITATIVE APTITUDE
    • NON VERBAL
    • GROUP DISCUSSION
    • ENGINEERING
  • CAREERS
    • HR INTERVIEW QUESTIONS & ANSWERS
    • GD INTERVIEW
    • RESUME SAMPLES
    • ENGINEERING
    • APTITUDE
    • REASONING
    • COMPANY QUESTIONS
    • COUNTRY WISE VISA
    • VISA DRESS CODE
    • LETTERS
  • BUSINESS
    • TOP WEB HOSTING
    • TOP CAR ACCIDENT LAWYERS
    • TOP CAR INSURANCE
    • TOP SOFTWARE TOOLS
    • TOP 10
    • LUNG CANCER
  • PROJECTS
Wikitechy
WRITE FOR US
  • TUTORIALS
  • TECHNOLOGY
    • ALL TECHNOLOGY
    • ARTICLES
  • FULL FORMS
  • WEBINARS
  • ERRORS & FIXES
  • INTERVIEW
  • FORUMS
  • VIDEOS
    • QUANTITATIVE APTITUDE
    • NON VERBAL
    • GROUP DISCUSSION
    • ENGINEERING
  • CAREERS
    • HR INTERVIEW QUESTIONS & ANSWERS
    • GD INTERVIEW
    • RESUME SAMPLES
    • ENGINEERING
    • APTITUDE
    • REASONING
    • COMPANY QUESTIONS
    • COUNTRY WISE VISA
    • VISA DRESS CODE
    • LETTERS
  • BUSINESS
    • TOP WEB HOSTING
    • TOP CAR ACCIDENT LAWYERS
    • TOP CAR INSURANCE
    • TOP SOFTWARE TOOLS
    • TOP 10
    • LUNG CANCER
  • PROJECTS
CSS • HTML • JAVASCRIPT

[Solved-12 Answers] Choosing CSS parent selector

March 14, 2017

PROBLEM How can we select the <li> element that is a direct parent of the anchor element? Below is an example CSS, Tips : There are ways of doing this...

CSS • HTML

[Solved-13 Answers] Changing HTML5 input’s placeholder color with CSS

March 14, 2017

PROBLEM Chrome supports the placeholder attribute on input[type=text] elements,But  CSS doesn’t squat to the placeholder’s value: Value will still...

MYSQL Articles, Errors and Fixes
MYSQL • SQL SERVER

What’s the difference between INNER JOIN, LEFT JOIN, RIGHT JOIN and FULL JOIN

March 14, 2017

There are different types of joins available in SQL: INNER JOIN OUTER JOIN LEFT OUTER JOIN RIGHT OUTER JOIN FULL OUTER JOIN INNER JOIN: (the typical Join...

MYSQL Articles, Errors and Fixes
MYSQL • SQL SERVER

[Solved-9 Answers] Which MySQL Datatype should be used for storing boolean values?

March 14, 2017

PROBLEM Since MySQL doesn’t seem to have any ‘boolean’ datatype, which datatype do we ‘abuse’ for storing true/false information...

HTML • MYSQL • PHP

[Solved-10 Answers] UTF-8 all the way through

March 14, 2017

PROBLEM When we setup a new server, and need to support UTF-8 fully in our web application. It seems to end up having to fallback to ISO-8859-1. Where we need...

MYSQL Articles, Errors and Fixes
MYSQL

[Solved-9 Answers] How to get a list of MySQL user accounts

March 14, 2017

PROBLEM The MySQL command line utility is used to navigate through a database. Now we need to see a list of user accounts. How to get a list of MySQL user...

MYSQL Articles, Errors and Fixes
MYSQL

[Solved-10 Answers] Which field we need to use datetime or timestamp

March 14, 2017

PROBLEM Would you recommend using a datetime() or a timestamp () field, and why (using MySQL)? we working on PHP server side. SOLUTION 1 Timestamps in MySQL...

CSS • HTML

[solved – 5 Answers] Set the table column width constant regardless of the amount of text in its cells

March 14, 2017

PROBLEM In my table set the width of the first cell in a column to be 100px. However, when the text in one of the cell in this column is too long, the width of...

CSS

[Solved – 4 Answers] Resize image proportionally with CSS

March 14, 2017

PROBLEM Is there a way to resize (scale down) images proportionally using ONLY CSS? We can resize the image using JavaScript way, but just trying to see if...

PHP

[Solved-11 Answers] How to get PHP Errors in display?

March 14, 2017

PROBLEM How to display PHP Errors? On checking our PHP ini file and the display errors is set and also error reporting is E_ALL. After restarting our Apache...

PHP

[Solved – 11 Answers] Using a regular expression to validate an email address

March 14, 2017

PROBLEM regex for email validation – There is a several PHP programs. Get contacted by someone that is having trouble with a site that uses it, and we...

PHP

[Solved – 10 Answers]How to check if a string contains a specific word in PHP

March 14, 2017

PROBLEM In this sample code: How to write the statement in a proper way If ($a contains ‘are’)? SOLUTION 1 The strpos ().strpos. php function is...

PHP • sql-injection • user-input • xss

[Solved –10 Answers] Which is the best way to sanitize user input in PHP

March 14, 2017

[Solved –10 Answers] PHP - Which is the best way to sanitize user input in PHP? - Is there a catchall function somewhere that works well for sanitizing user

enumeration • PHP

[Solved – 10 Answers] PHP and Enumerations

March 14, 2017

[Solved - 10 Answers] - PHP- Php and Enumerations - PHP doesn't have native Enumerations. But it become accustomed to them from the Java world Constants

ip-address • PHP

[Solved –10 Answers] How to get the client IP address in PHP

March 14, 2017

[Solved –10 Answers] PHP - How to get the client IP address in PHP? - How can we able to get the client IP address using PHP? We want to keep record of

cookies • PHP • session

[Solved- 7 Answers] How to expire a PHP session after 30 minutes?

March 14, 2017

[Solved- 7 Answers] PHP - How to expire a PHP session after 30 minutes?-We need to keep a session alive for 30 minutes and then destroy it

HTML • JAVASCRIPT • jquery • readonly • select

[Solved- 4 Answers] how to set select element as readonly

March 13, 2017

[Solved- 4 Answers] HTML- html select readonly - how to set select element as readonly -According to HTML specs, the select tag in HTML doesn't have a read

fragment-identifier • HTML • html5

[Solved – 4 Answers] How to use ‘name’ or ‘id’ in html anchor?

March 13, 2017

[Solved – 4 Answers] HTML - HTML Anchors with 'name' or 'id' - How to use 'name' or 'id' in html anchor? When one wants to refer some part of a webpage

HTML • html-parsing • JAVASCRIPT

[Solved – 3 Answers] How to remove html tags from string

March 13, 2017

[Solved - 3 Answers] JAVASCRIPT - remove html tag - How to remove html tags from string,Is there an easy way to remove html tag from string?

CSS • HTML • radio-button

[ Solved – 5 Answers ] CSS – How to select a radio button by default?

March 13, 2017

[Solved – 5 Answers] HTML - CSS - select a radio button by default - we have some radio buttons and when we tried to be set as selected by default

Previous 1 … 194 195 196 197 Next

  • INTERVIEW TIPS
  • Final Year Projects
  • GD Interview
  • Resume Samples
  • Engineering
  • Aptitude
  • Reasoning
  • Company Questions
  • Country wise visa
  • Interview Dress Code
  • CAREER GUIDANCE
  • Entrance Exam
  • Colleges
  • Admission Alerts
  • ScholarShip
  • BestMixer.io
  • Education Loans
  • Letters
  • Learn Languages

OTHER LANGUAGES

  • English
  • Chinese
  • Deutsch
  • Russian

World's No 1 Animated self learning Website with Informative tutorials explaining the code and the choices behind it all.

WIKITECHY

  • About Us
  • Terms Of Use
  • Privacy Policy
  • Contact Us

EXPERT WEBINARS

  • Wikitechy Live

JOIN OUR COMMUNITY

  • Advertise
  • Write for Us

DMCA.com Protection Status 2019 © KaaShiv InfoTech, All rights reserved.Powered by Inplant Training in chennai | Internship in chennai