
Search In
Hi,
This is part third of .Net interview questions. We are covering WCF interview questions in this blog, so without wasting time lets start:
Default question: (for each question from below list, prepare examples from your late
Hello everyone, today we discuss about "Check Live traffic on your live website".
When you have a Website, and you are thinking about learning the things like, exactly who visited your Website, you want to recognize the number of visitors, and where
Here is my query code, How can write same code in the prepare statement php.
<?php
header('Content-type : bitmap; charset=utf-8');
if($_SERVER['REQUEST_METHOD']=='POST'){
$encoded_string = $_POST['ima
In CakePHP you can store the Sessions in the database , So lets try to implement this :
Because you are storing the session in databse so first you need to create a table in DB so that you can store the session
CREATE TABLE IF NOT EXISTS `cake_sess
What is compact() Function ?
compact() Function is used for creating an array from variables and their values.
Syntax compact() Function:
compact(variable1,variable1,variable3....)
Note:If any strings that does not match variable names will be sk
Hello users, today I teach you How to Overwrite Additional Image Sizes of parent in child theme Wordpress.
Below code is the Parent theme for image cropping.
add-action( 'after-setup-theme', 'setup' );
function setup()
{
add-image-size( 'slide
How to save CakePHP session in Database ?
To store session in Database, you need to create a table in DB so that you can store the session in it.
Follow below steps.
1. Create a table in DB
CREATE TABLE IF NOT EXISTS `users` (
`id` VARCHAR(255) NOT
Using maven we can create executable JAR file with all the requires dependencies and then we can use that JAR file to execute the whole project. So, to create the JAR file just add the below plugin inside the build tag.
<plugin>
<artifac
Thread:
A thread is a light-weight process which can run independently. A java program can contain multiple threads. Every thread is created and controlled by the java.lang.Thread class. We can create threads in two ways:
By extending Threa
To give border color to UIButton :-
1. Take UIButton as property .
2. Give corner radius and corner width to UIButton.
3. Now give border color to UIButton.
For Swift use :-
demoButton.backgroundColor = UIColor.clearColor()
demoButton.layer.cor
