answersLogoWhite

0

📱

Web Programming

Web Programming is the category for programming for the Internet and World Wide Web. Q&A's include coding in technologies used for Browser, applet based applications, and more.

584 Questions

Is PHP compatible with Java?

I think both of them are very good and useful, but they are different of course, for example java is more secure and safe programming, but is also depended how web browsers support it, php is the programming which is relevant for all web servers.

What is mark up in web design?

A Markup or Markup language is the language like HTML or XHTML that websites are built with. It's the coding that separates a plain text document, that a computer would generally just read and display as text, into a Markup document.

  • AXAT Technologies

What is the term for a space memory used to store information for later use?

A space used by memory to store information for later use is called the cache (pronounced like cash).

What do you mean by page caching and block caching?

Page caching:

• If enables, page caching will only be used for anonymous users.

• If you enable page caching, the entire HTML of each page will be stored in the database. This significantly reduces the amount of queries needed.

• This automatically means that blocks will also get cached, disregarded their own cache settings.

• If Varnish is configured, this will also enable varnish caching

• The page cache max-age will be used (see below) for each page.

• You can check the "X-Drupal-Cache" HTTP header to check if this cache is HIT.

Block caching:

• If you enable block caching, without enabling page caching, the block cache settings will be used (for anonymous and authenticated).

• The defaults for most blocks is "don't cache" because that is the default for blocks who don't have their cache settings specifically declared.

• You can use block_cache_alter module to set this for each block.

• When it's block created by Views, you can set the cache settings for a block in Views.

What is the code for a text stroke and fill color for a CSS page?

Text stroke is HTML and is " " Fill color is "background-color" defined in the stylesheet, head or inline for the element in question.

Why xml is not used to display data?

XML is not easy on the eyes. Charts and tables are.owers

XML is a way to tell the browsers how to diplay the data, but it is not visible as it it sits in the source code of the webpage or domain.

How can I know what PHP version my site is running on?

Set up a PHP file and put the following in it.

<?php

phpinfo();

?>

Then run it on the server, it will have all the information you will need including what version you are running.

What are three types of commonly used links?

External - <a href="http://www.google.com">Google</a>

Mailto - <a href="mailto:webmaster@google.com">Email Google</a>

Anchor - <a href="#top">Go To Top</a>

What is a online news portal?

News portal is one among the ways to reach the current information and technology news and market trends. Now a day's people use online news portal or website to grasp the newest updates and news across the world . it's flexible to read and obtain the newest news everywhere that you just want via online news portal.

Gone are the old times when people want to wait days to get the papers or watch TV or read the news. The introduction of internet has led to the introduction of the most recent breaking news websites like Global Markets that provide a range of information to the users with no issue.

Global Markets are among the most trusted and respected online news portal to offer you with authentic and real information only.

What is the difference between flash pro and flash builder?

  • Flash Professional refers to the traditional Flash IDE that is a member of the Creative Suite family.Flash Pro is the software one uses to create Flash animations.
  • Flash Builder refers to the actionscript code editor built upon Eclipse (previously known as Flex Builder).Flash Builder is the name of the latest version of the Flex IDE developed by Adobe.

When i click the php query button its asking to open or save?

Clearly, this is a case of the server not knowing what to do, so it treats it like any other file.

To run PHP scripts, you will need to configure your server to handle PHP files through the php-cgi or phpexecutable. For Apache, this is accomplished by editing httpd.conf

Add the following to the httpd.conf file:

PHPIniDir ""

LoadModule php5_module ""

AddHandler application/x-httpd-php .php

How do you put a link in a word?

WikiAnswers does not provide a hyperlink feature, people have to copy and paste the URL to the address bar in order to visit the website provided. The only way to link words or links is when someone put a URL in the 'Related Links' feature that would help someone find more information about what he or she is asking.

What has design and development have to do with design?

Development is the bread, and the design is its butter. The two need each other to survive!

What is the J2EE Business Delegate Pattern?

The Business Delegate pattern reduces the dependency between tiers. It is an attempt to make tiers interchangeable so one can access or utilize the services of any other.

This pattern is a proxy that hides the complexity of remote service lookup and error recovery. It makes it easier to communicate requests and results from one layer to another.

This is not a pattern for a layer itself. It isn't a way for you to create a business logic component or structure. Rather, it is an interface to a tier so that you can change the underlying components and not disturb the presentation tier.

This pattern is like an ambassador. Like all good ambassadors, it can pass on the message from the host country to any other.

Why is a structured approach necessary?

A unstructured application is hard to maintain, difficult to debug, and generally performs slower than a properly structured and organized application.

How do you add a border to a div in XHTML strict?

You use CSS.

If you have this document:
---

...

---
and add this CSS rule (in a tag or a separate file):
---
.test { border: 1px solid black; }
---
you will get a 1 pixel black border around the div.

Check out CSS for other options.