It's important to use icons with the same style in your project. So here's a list of free icons you can use. ๐๐ ๐ธfethericons. com ๐ธiconmonstr. com ๐ธfreeicons. io ๐ธlineicons. com ๐ธcss. gg ๐ธjam-icons. com
ravimane and php,mysql that code that is same in two page no need to write twice , just make one file having that code and call or include anywhere you want. everyone have been trying with .tpl.php extension. but doesn't matter what you want take, but with .php extension. that cool na .so check out below and seek whatever you want . below i made three file top.php <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="css/style.css" type="text/css"> <meta name="Author" content="YOUR NAME HERE"> middle.php </head> <body> <div id="banner"> <img src="xyzlogo.gif" alt="XYZ, Inc. logo"> </div> <div id="menu"> <a href="index.php">Home</a> | <a href="sitemap.php">Sitemap</a> | <a hr...
phpmysql Introduction When we want to execute a specific task at a scheduled time, MySQL provides special functionality called triggers. Triggers are basically named blocks of code that are executed, or fired, automatically when a specified type of SQL statement is executed. Triggers can be executed before after an INSERT, UPDATE or DELETE statement is executed on the table. Syntax CREATE TRIGGER trigger_Name {Before|After}{Insert|Update|Delete}ON table_name For EACH ROW sql_block For Example Using the following query, you can better understand what a trigger is and how to use a trigger to execute a specific task at a scheduled time. Query The following query creates a trigger named "MysqlTrigger", this trigger is associated with the name emp table and is fired before an update. When you try to update a name with lower case, it will automatically convert it to UPPER case . "CREATE TRIGGER MysqlTrigge...
Comments
Post a Comment