For the table relationship, MySQL have few limitations on create table relationship. The limitations on InnoDB storage engine have this limitation:
- Maximum 1000 columns per table
- Maximum 64 TB table space per table
- Total of row length is 4GB
That information only the administrator can print it out. However, others are restricted.
Screenshot-1
In term of the innerHTML function working in Internet Explorer version 6 and 7, but that function had some problems run on Firefox 3.
According to Microsoft MSDN document shows the syntax (object.innerHTML = ‘ <b> Hello World</b>’) of the innerHTML is correct under IE7. The “object” could be the HTML element Div, Span, Label and such. It worked on IE7.
But this syntax “object.innerHTML = ‘<b> Hello World</b>’” doesn’t work on Firefox 3. An error message shows at JavaScript Console on Firefox is “object is undefined”.
On the Net, someone also had the similar problem with innerHTML property. An Example 1 that somebody used the title “Problems with innerHTML property” posted on a forum. Example 2, someone used the title “innerHTML not working in Firefox” on other forum.
The solution also been posted on a forum as Example 3. The solution on solving the innerHTML property problem is change the syntax on “document.getElementById("object").innerHTML="<b>Hello World </b> "” which can run on IE7 and Firefox 3.
I am not sure other guys solving their problem yet or not. In my case, the problem has been fixed.
Focus on the CSS defining in web page, used the link element to define the print style sheet each web page. The following examples are different on the attribute with media=”screen” for screen style, media=”print” for printing. The syntax format on link element in web page as next:
<link media="screen" href="screen.css" type="text/css" rel="stylesheet">
<link media="print" href="print.css" type="text/css" rel="stylesheet">
A common input object with type attribute on file is being used on file selecting, but the file type filtering is a malfunction even an “accept” attribute can be used for file filtering that information can be found in HTML learning documentation, such as Microsoft, w3Schools. The file type filtering is still not working during the file selecting, sees as Screenshot-2. Checked the input object in HTML reference in Microsoft Technet web site that showed “accept” attribute had been removed in the input object’s attribute listed. Therefore, give up the file type filtering function on input object. Shift the file type filtering run on the server side script (PHP). The first step on checking the file type is allowed or not, if the file type is not match the requirement, the upload file kept in the system temp folder will be deleted. The PHP script has been used on file type checking sees as Screenshot-3.
Screenshot-2
Screenshot-3
Screenshot - 2