SVG – Scalable Vector Graphics
SVG – Scalable Vector Graphics <!DOCTYPE html> <html> <body> <h1>My first SVG</h1> <svg width=”100″ height=”100″> <circle cx=”50″ cy=”50″ r=”40″ stroke=”green”
Read moreSVG – Scalable Vector Graphics <!DOCTYPE html> <html> <body> <h1>My first SVG</h1> <svg width=”100″ height=”100″> <circle cx=”50″ cy=”50″ r=”40″ stroke=”green”
Read moreC++ Hello World Let’s break up the following code to understand it better: Example #include <iostream> using namespace std; int main()
Read morePHP MySQL connector Example: <html> <head> <title>Connecting MySQL Server</title> </head> <body> <?php $dbhost = ‘localhost:3306’; $dbuser = ‘guest’; $dbpass =
Read moreLOCATE() – MySQL Function The LOCATE() function returns the position of the first occurrence of a substring in a string.
Read moretime_to_sec MySQL function The TIME_TO_SEC() function converts a time value into seconds. SELECT TIME_TO_SEC(“19:30:10”); Output: 70210 SELECT TIME_TO_SEC(“-03:30:00”); Output: -12600
Read moreCONCAT() Function – MySQL MySQL has the CONCAT() function, which allows you to concatenate two or more strings. The function
Read moreTIMEDIFF – MySQL Function This returns the difference between two datetime expressions: For example: SELECT TIMEDIFF(“2020-05-10 13:10:11”, “2020-05-05 13:10:10”); Output:
Read moreTruncate or Empty table in mysql from phpmyadmin phpMyAdmin is a free software tool written in PHP intended to handle
Read moreMy first web page – html introduction HTML is the standard markup language to create Web page. HTML stands for
Read moreConvert mysql table engine to innodb
Read more