1. Check a Specific Table in a Database
# mysqlcheck -c <dbname> <tablename> -u root -p
2. Check All Tables in a Database
# mysqlcheck -c <dbname> -u root -p
3. Check All Tables and All Databases
# mysqlcheck -c -u root -p --all-databases
4. Analyze Tables using Mysqlcheck
# mysqlcheck -a <dbname> <tablename> -u root -p
5. Optimize Tables using Mysqlcheck
# mysqlcheck -o <dbname> <tablename> -u...
4:44:00 PM
Achappan Mahalingam
No comments
Cross-browser refers to the ability of a website, web application, HTML construct or client-side script
to function in environments that provide its required features and to
bow out or degrade gracefully when features are absent or lacking.
1. Ghostlab
2. BrowserStack
3. Sauce
Labs
4. CrossBrowserTesting
5. Browsershots
6. Browserling
7. Browsera
8. Mogotest
...
6:38:00 PM
Achappan Mahalingam
No comments
string strtoupper
( string $string
)
Example:
$filename=$_FILES["fileToUpload"]["name"];
$ext = substr(strrchr($filename, "."), 1);
echo "<br>File Type is: ".strtoupper($ext...
12:17:00 PM
Achappan Mahalingam
No comments
When you convert NULL into String it will always return a empty valu...
12:09:00 PM
Achappan Mahalingam
1 comment

<span></span> as an in-line element and a <div></div> as a block level element.
While a span allows you to separate things from the
other elements around them on a page or within a document, it does not
cause a line break. This is why it is perfect for in-line styling, like
coloring a single word in a sentence to draw more attention to it.
But...
3:38:00 PM
Achappan Mahalingam
No comments
SQL Injection is possible to alters the existing SQL commands to expose hidden data or to override the valuable ones, or even to execute dangerous system level commands on the database host. This is accomplished by the application taking user input ($_GET and $_POST) and combining it with static parameters to build an SQL query....
Subscribe to:
Posts (Atom)