Showing posts with label how_to. Show all posts
Showing posts with label how_to. Show all posts
Thursday, December 24, 2015
How to Remove Snap.do Search from Chrome, Firefox, IE
Hello guys
This is another useful video tutorial How to Remove Snap.do Search from Chrome, Firefox, IE by Minhazurnetwork. In this video I show how do get rid form Search.snapdo.com Browser Hijacker virus. If you search on google you find many remover software to remove this virus but first you need to buy them. If you watch this video and flow the sample step you can get rid from this kinds of virus. So watch this video and enjoy.
If this video helpful to you please like and share this video on youtube. If any question Please comment us. And Please subscribe your channel on youtube.
Wednesday, September 16, 2015
How To Fix: The Hosted Network Couldn’t Be Started Problem
Today I fascinating another network error in Windows 8. The error says “The hosted network couldn’t be started. The group or resource is not in the correct state to perform the requested operation“.
There are problem with hosted network adapter that not working
properly. So I’m trying some fixes to solve this error and finally found
the solution. So here I give you a step that working for me and now my
network is working fine. So follow simple steps to solve the hosted
network couldn’t be started issuing in Windows 8.
if you think you can solve The Hosted Network Couldn’t Be Started problem watch my video on youtube and follow my instruction.
If any problem please send me a command or message me on youtube or my bloge
Friday, July 31, 2015
How to Create Visitor Counter using PHP and Mysql
You might have seen visitor counter on many websites.
Visitor counter is a simple script which is used to show number of visits on
your webpage. This Post will explain you the simple code to create your
own visitor counter using PHP and Mysql. You can use this code in any of
your web applications to keep track on your visitors number in database
for analysis
Just Follow Two Simple Steps to create your own visitor
counter using PHP and Mysql in your Web application
- 1. Create a Table in your database
- 2. Create a test file to implement the code (counter.php)
Step 1: Create Table in your database
Simply make a table with name
tbl_counter(any name) in your database to keep the records of visitors.
CREATE TABLE `tb_counter` (
`counter` INT( 11 ) NOT NULL AUTO_INCREMENT ,
PRIMARY KEY ( `counter` )
) ENGINE = MYISAM ;
Step 2: Create a php file (Test File)
<?php
session_start();
require_once 'db_con.php';
$counter='';//initilize counter
$sql="SELECT counter FROM
tbl_counter";
$resultc=mysql_query($sql);
$rows=mysql_fetch_assoc($resultc);
$counter=$rows['counter'];
// if count is empty
if(empty($counter)){
$counter=1;
$insertCounter="INSERT INTO
tbl_counter set counter='".$counter."'";
$result1=mysql_query($insertCounter);
}
// increment visitor count
$increasecounter=$counter+1;
$sql2="update tbl_counter set
counter='".$increasecounter."'";
$result2=mysql_query($sql2);
?>
<!DOCTYPE HTML>
<html>
<head>
<title>
Hits Counter
</title>
</head>
<h1>
<?php echo "Total hits in this page=" .$counter ; ?>
</h1>
</html>
To know more watch my video tutorial in you tube to know more
Subscribe to:
Posts (Atom)