dvd

Upcoming DVDs   Wreck-It Ralph on DVD Released March 05, 2013 Wreck-It Ralph (John C. Reilly) longs to be as beloved as his game's perfect Good Guy, Fix-It Felix (Jack McBrayer). Problem is, nobody loves a Bad Guy. But… read more.... The Master on DVD Released March 05, 2013 Set in America in the years following World War II, a charismatic intellectual by the name of Lancaster Dodd (Philip Seymour Hoffman), who… read more.... Red...

Social Brands

Speaking at Maketing's Social Brands conference in February, Silberbauer explained that the 'nervousness around the room when they see they need to communicate with customers' is palpable. 'But when they get 500 likes, that's when they realise what social media is all about.' No department should lay claim to 'owning' social media, explains Danny Whatmough, director of digital strategies at technology PR agency EML, in our other social-media management feature this week. Completely decentralising responsibility is not the answer because...

Social media marketing

Social media marketing is all about creating relationships with your customers through a variety of online media channels. From Facebook to Twitter, blogs to video production, connecting with your customers on a more sociable level has become a driving-force behind the success of many companies currently flourishing online and we’re here to help! Our team of internet marketing experts are dedicated to creating social media marketing campaigns that work for you and your business, whatever your goal. Facebook Social Media Marketing Strategy   ...

All HTML Interview Questions And Answers

What is HTML? Hyper Text Markup Language,which allows an individual special code to create web pages to be viewed on the Internet.It’s the default markup language used for displaying web pages. What is a DOCTYPE? <!DOCTYPE> is used to inform the browser as to which version of HTML the current web page is using. The doctype declaration refers to a Document Type Definition (DTD) which specifies the rules for the markup language, What are meta tags and why it is used? The <meta> tag always goes inside the head element. They can...

find the number of parameters passed into function in PHP?

func_num_args() function returns the number of parameters/arguments passed to a function in PH...

difference between include and require?

Answer: It"s how they handle failures. If the file is not found by require(), it will cause a fatal error and halt theexecution of the script. If the file is not found by include(), a warning will be issued, but execution willcontinu...

Use mysqldump to create a copy of the database?

mysqldump -h mysqlhost -u username -p mydatabasename > tgdbdump.s...

What is SERIAL data type in MySQL?

BIGINT NOT NULL PRIMARY KEY AUTO_INCREME...

What’s the default port for MySQL Server?

33...

Conditional Functions mysql

The IF() Function The IF() function provides a way to return a value based on a condition within a query. The first argument is a condition that is evaluated for each row of the query. The value in the second is returned if the condition is trUE, and the third argument is returned if it is FALSE. The following example is a very simple shipping rate calculator. If the product weight is less than 5 pounds, shipping costs $1.99; otherwise, it costs $2.99. mysql> SELECT code, weight, IF(weight < 5, 1.99, 2.99) -> FROM products; +------+--------+------------------------------+ |...