I wanted to increase the table size (width). The HTML template was being used by many reports. And my report was not coming into the default size of 100%.
100 percent was not the total screen size available to my report. Instead it was wrapped in a fixed width table.… (Continue)
This post is a little beautified article from earlier passing variables and values.
Passing JavaScript variable’s value to php/How to use JavaScript Variable in php
Again, directly you cannot do this. But when you pass a value to a url like:
1. <a href=”phpPage.php?sub=mail Subject”>Call PHP page</a> then $_GET['sub'] auto… (Continue)
This is an example of how to save visual space of web page using show-hide div, p, etc. Click on Details and see the effect.On first click it will expand and on next click it will become hidden.
.hide {display:none;} .show {display:block;} .hover1 {cursor:pointer;color:blue;}
function toggleView (id) { div1 =… (Continue)
Do you ever try checking your HTML code for error? If no then you are probably writing wrong HTML code. This will cause your HTML load slow on browser. Validate your HTML code according to your document type defined in <!DOCTYPE ..Markup Validation
These are free W3C Markup Validation… (Continue)
Here this is a CSS tutorial for beginners, who know some basic structure of HTML Page. Here you will easily learn why to use CSS, how to use CSS, CSS structures.
CSS stands for Cascading Style Sheets. Styles were added to HTML 4.0.
Why we use CSS in Web Page?Previously… (Continue)
These tips are for those who have experience in PHP platform of at least 2-3 months. These tips will help you directly dive into some of the things that mostly overlook at learning time and latter create problems in writing good code and building confidence.
Create/maintain blocks of code
Use… (Continue)