Archive for August, 2011

Office phone system

Saturday, August 20th, 2011 | Technology news with Comments Off

A office phone system could be defined as a multi-line telephone system typically used by business people for their communication needs. office phone system can be anything from a small key system for large-scale central . Modern phone systems possess a large amount of advanced features. The system provides unlimited extensions and each extension includes a message developed by the employee that comes on when there is no one available to answer the phone. You will find way of identifying callers (caller ID), saving messages (voice mail), forwarding calls when the employee is elsewhere, and redirecting calls once the employee is out of the office.

Several extraordinary advancements took place within the field technology of phone system   now you’ve VoIP (Voice-over Internet Protocol) telephone systems, hosted PBXs, internet fax services and more Small businesses can today possess a virtual PBX to satisfy all its communication needs. In fact, it’s all the sophisticated features like voice mail, faxing, automated greetings, conference calling and all sorts of at affordable rates.

Today, there is a host of VoIP service providers, online fax service providers, toll-free number service providers, and hosted PBX providers. Obviously, to fully avail all the excellent features of a modern business phone system you need to tie up with the right and reliable service provider who understands the character of the business and it is sensitive to your communication needs.voice mail, fax, automatic greetings, conference calls and all at affordable prices.

Php program called the method of hidden

Saturday, August 13th, 2011 | Web Development with Comments Off
call a method: script language = ‘javascript’ src = ‘count.php’ / script count.php Source:? Php file_name = ‘count.txt’; fp = fopen (file_name, ‘r’); / / Open File read the current count coun …

Call the method: 

Remove array elements useful PHP array functions

Thursday, August 11th, 2011 | Web Development with Comments Off
php array remove blank it from the elements (including elements of only blank characters) to a two-dimensional array into hashmap ** * remove the blank from the array elements (including elements of only whitespace characters) * * @ param array arr * @ param boolean trim * / CODE: functiona …
php remove it from the array of empty elements (including elements of only whitespace characters) into a two-dimensional array of hashmap

**
* Remove the blank from the array elements (including elements only whitespace)
*
* @ Param array arr
* @ Param boolean trim

* /

CODE:
function array_remove_empty (& arr, trim = true)
(
foreach (arr as key => value) (
if (is_array (value)) (
array_remove_empty (arr [key]);
) Else (
value = trim (value);
if (value ==”) (
unset (arr [key]);
) Elseif (trim) (
arr [key] = value;
)
)
)
)
/ **
* To convert a two-dimensional array of hashmap
*
* If omitted valueField parameters, then convert the result that each contain all the data for the array.
*
* @ Param array arr
* @ Param string keyField
* @ Param string valueField
*
* @ Return array
* /

CODE:
function array_to_hashmap (& arr, keyField, valueField = null)
(
ret = array ();
if (valueField) (
foreach (arr as row) (
ret [row [keyField]] = row [valueField];
)
) Else (
foreach (arr as row) (
ret [row [keyField]] = row;
)
)
return ret;
)

The use of Java in this

Wednesday, August 10th, 2011 | Web Development with Comments Off
1.this is the current object itself. When a class object to be clear that the use of their own variable or function should add this reference. Such as the following example: publicclassA (Strings = ‘Hello’; publicA (Strings) (System.out.println (‘s =’ + s); Sys …
1.this is currently the object itself.
When a class object to be clear that the use of their own variable or function should add this reference. Such as the following example:
publicclassA (
Strings = “Hello”;
publicA (Strings) (
System.out.println (“s =” + s);
System.out.println (“1 -> this.s =” + this.s);
this.s = s;
System.out.println (“2 -> this.s =” + this.s);
)
publicstaticvoidmain (String [] args) (
newA (“HelloWorld!”);
)
)

Insertion Sort Algorithm in Java language

Tuesday, August 9th, 2011 | Web Development with Comments Off
 public class CharuSort (public static void main (String [] args) (int [] sort = (4,6,3,9,5); Sort (sort); for (int i = 0; isort.length ; i + +) System.out.pri …

public class CharuSort (public static void main (String [] args) (
int [] sort = (4,6,3,9,5);
Sort (sort);
for (int i = 0; i
System.out.print (sort [i] + “”);
)

public static void Sort (int [] sort) (
int i; / / to scan times
int j; / / get elements as compared
for (i = 1; i
int temp; / / temp used for temporary data
temp = sort [i];
j = i-1;
while (j> = 0 & & temp
sort [j +1] = sort [j]; / / put all the elements of a position pushed back
j -;
)
sort [j +1] = temp; / / smallest element into the first position
)
)
)