13 October 2017

Learn about Exalytics, Exadata and Exalogic - Oracle

1) What is Oracle Exalytics?

(If you found this article useful then share with your friends.)

30 May 2017

How to Copy Arabic text to MS Word



(If you found this article useful then share with your friends.)

22 March 2017

Shutdown Timer shortcut in Windows



(If you found this article useful then share with your friends.)

09 February 2017

Get ip address using PHP


(If you found this article useful then share with your friends.)

08 February 2017

Using JSON inside PHP



(If you found this article useful then share with your friends.)

07 February 2017

PHP $$variable Double dollar sign Meaning

php

(If you found this article useful then share with your friends.)

06 February 2017

Write HTML in PHP

php logo


(If you found this article useful then share with your friends.)

04 February 2017

List of PHP ODBC functions

php logo


(If you found this article useful then share with your friends.)

03 February 2017

Write PHP code inside HTML file

php logo
To write PHP inside HTML, you need to use the less than and greater than brackets along with question mark with the starting one written 'php'.

For Example:

<div>
<?php 
?>
</div>



To print something inside php, we can use the fuction named echo which is predefined in php for printing.

For Example: 

<div>
<?php  echo "Hello World";
?>
</div>


To use php variable value inside html tag: We have taken a variable with name 'year' and value is set as '2014'. And the value of the variable has been used inside input text box inside the 'value' attribute .
<?php $year = 2014 ; ?> 
Input text:<input type="text" value="<?php echo $year ; ?>"/>

You have to be very careful when using php inside html. With little mistake, you may not get result.

Note: Make sure the file extension ends with .php , as php is scripting language, so it needs a server to execute the php code. 

Learn:  How to write HTML inside php

(If you found this article useful then share with your friends.)

02 February 2017

Short Note on Types of Array in PHP

php


(If you found this article useful then share with your friends.)

01 February 2017

How to Replace space with Dash in PHP

php logo

(If you found this article useful then share with your friends.)

15 January 2017

17 March 2016

How To Remove Autorun Viruses



(If you found this article useful then share with your friends.)

14 April 2014

Regex for Matching Values



(If you found this article useful then share with your friends.)

30 March 2014

Interview Questions - Networking




(If you found this article useful then share with your friends.)

25 March 2014

12 March 2014

How to Subtract Two values in SQL query

Problem: How to subtract two values in a sql query to get the difference ? 

(If you found this article useful then share with your friends.)

11 March 2014

Fix MSCOMCT2.OCX in Windows 7



(If you found this article useful then share with your friends.)

25 February 2014

Free open Source C copmplier for Windows IDE

codeblocks
Code-Blocks is a Compiler IDE software for coding C language with IDE GUI interface and works in Windows.

(If you found this article useful then share with your friends.)

17 February 2014

Implement of POP in ASP dot net

Follow this steps:
  • Add button in the design view.
  • Double click the button in design view.

(If you found this article useful then share with your friends.)