Wednesday 7 September 2016

Now Reliance Jio SIM is available to Anyone

Now Reliance Jio SIM is available to Anyone





Reliance Jio SIM is one of the most items news in SIM World in recent times. First Reliance Jio Launching that was available only to Reliance Employee. And after that Reliance Jio decided to provide that Service to Own LYF Branded Smartphone. Recently Jio SIM owner certain that Samsung Smartphone could walk-in to Reliance Digital Store and purchase the Jio SIM. Last Week that offer will extended Some other Samsung Smartphone and other LG Smartphone As Well.

Now Confirm about the Reliance Jio, That SIM Purchase owner of any 4G Smartphone can walk-in to Reliance Digital and Xpress Mini Store. That Providing Complete Jio Preview offer that gives you 3 months to unlimited data, Calling, SMS and Reliance JIO Services like App JioOnDemand.

And Other things that Offer is applicable only in select Reliance Digital and Xpress Mini Store. That Free to offer Jio SIM cards to Customers. Since that is not official order from the Reliance Jio with respect to the same. So that If your Local Store won’t Providing Jio SIM on your non-LYF, Non-LG and Non-Samsung Smartphone that time we suggest try some other store.

While the Smasung and LG Smartphone Owner that Generate the Code through the MyJio app to Get the Jio SIM and Other 4G Smartphone owner walk-in to Reliance Digital store. Customer needs to Submit KYC Document to avail the Offer, Just Like they need to buying the New Connection and the any other Operator.  

Currently Reliance Jio is Still Offering Free SIM to For Test its Network that’s to provide the 3 Months Free Unlimited Data, Calling and SMS.


Mukesh Ambani Says Commercial Launch of Jio SIM Few Months Away.


Reliance Jio SIM Features :

Now anyone can purchase a Reliance Jio SIM.
But the Offer is Available only Selected Outlets.
Jio Provide Free 3 Months Unlimited Data, Calling, SMS with Every Jio SIM

Reliance Jio said over 5 Lakh Users using its network during the Trial Phase.
More about the Detail and Store Visit Jio Website Jio Official

Thursday 1 September 2016

How to Create Bootable Flash Drive

How to Create Bootable Flash Drive

To Create a Bootable Pendrive to Installing Operating System

Not Surprisingly,  there are Few of us who providing Your system to Create a Bootable Pendrive
To Installing Faster than Disk Drive.
Lots of Users want to create a bootable USB Flash Drives, it appears imperative Operating System that Providing inbuilt way to Create them with Each DVD and CD Make. However that is not the case of the all Operating system Manufactures.


Bootable USB drives from ISO
Most of the Users are using Third Party Appplication to Create a Bootable USB drive for the Specific Operating System.


Help of Rufus Software to Create Bootable Pendrive


If you are Looking for the Steps of the Create a Bootable Pendrive Try Rufus,It is Open Source Tool For the creating Bootable Flash Drive.
Rufus App is Small size like 915 KB and claims be a Faster to Creating Bootable USB Drive. Rufus Software is also Portable Which Means that you dont need to Install this for the  Use it.
For the use Simply Double Click on the Exe File then that Application Start the working.      
Just double click on the executable file and the application will start working.

Strangely however, Rufus can only create bootable flash drives from ISOs meaning you need to have an ISO image of the CD or DVD of the OS of your choice.

I do not think this should be too much of a problem considering how easy it is to create ISOs from DVDs and CDs.


How to use Rufus Software?

Steps are Following

1) When you start Rufus, the First option that you will see is Device:. It contains all your connected USB Drives .Remember If you plug in a USB drive after Starting Rufus, the drive you have connected will shortly be available Here.

2) You will not need to modify the Partition Scheme and target system type, as the default choice is suitable for making the USB drive work on both UEFI and legacy BIOS computers.


See that Image..

3) Change the file system from FAT32 to NTFS from the dropdown menu. This is the file system with which your USB drive will be formatted with. Do note that older computers will not boot from a flash drive formatted as NTFS. Do not modify the cluster size. Enter the name you want for your USB device in the Volume label box.

4) Check the Create a bootable disk using checkbox if it is not already checked. In the dropdown menu next to it, select ISO image. Click on the button right to it to locate your ISO image.

Do note that Rufus will format your USB drive deleting everything on it before making it bootable. So, make sure that it does not contain any important data.

5) Click on Start to format your USB drive and extract all files of the ISO to it.

To install the OS, restart your computer and select your USB device as the primary boot option in the BIOS boot menu..

And  Use the Bootable Flash Drive to Install Any Operating System. 


If you face any problem, you can write about it in the comments.

Sunday 29 May 2016

Core PHP Insert Update Delete View With MySqli

Core PHP Insert Update Delete View With MySqli





Connection:

Conn.php

<?php

$conn = mysqli_connect("localhost","root","","stud");
// Check connection
if (!$conn) {
    die("Connection failed: " . mysqli_connect_error());
}

?>

Stud:

<?php
include 'conn.php';

if($_POST)
{

    extract($_POST);
    $abc= "INSERT into student (name,address,email,password) values ('$name','$address','$email','$password')";

    if($conn->query($abc) == TRUE)
    {
        echo "Record Inserted";
    } 
    else
    {
        echo "Record not Inserted";
    }
}
?>
<html>
<head>
<title>Stud Registration</title>
</head>
<body>
<form action="" method="POST">
<table border="1">
<tr>
<th>Name</th>
<td><input type="text" name="name"></td>
</tr>
<tr>
<th>Address</th>
<td><input type="text" name="address"></td>
</tr>
<tr>
<th>Email</th>
<td><input type="email" name="email"></td>
</tr>
<tr>
<th>password</th>
<td><input type="password" name="password"></td>
</tr>

<tr>
<td><input type="submit" name="insert" value="insert"></td>
<td><input type="submit" name="view" value="view">
</td>
</tr>
</table>
</body>
</html>


Insert:

<?php
include 'conn.php';

if($_POST)
{

    extract($_POST);
    $abc= "INSERT into student (name,address,email,password) values ('$name','$address','$email','$password')";

    if($conn->query($abc)==TRUE)
    {
        echo "Record Inserted";
    } 
    else
    {
        echo "Record not Inserted";
    }
}
$conn->close();




?>

View :

<?php
include 'conn.php';


$abc= "SELECT * from student";
 $result=$conn->query($abc);

?>

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
<table border="2">
<tr>
<th>Name</th>
<th>Address</th>
<th>Email</th>
<th>Password</th>
<th>Action</th>
</tr>

<?php
      while($data = $result->fetch_array())
      {
    ?>
<tr>
<td><?php echo $data['name']?></td>
<td><?php echo $data['address']?></td>
<td><?php echo $data['email']?></td>
<td><?php echo $data['password']?></td>

                <td><a href="edit.php?stud_id=<?php echo $data['stud_id'];?>">Edit</a></td>
                <td><a href="delete.php?stud_id=<?php echo $data['stud_id'];?>">Delete</a></td>
</tr>
<?php
 }
 ?>


</table>
</body>
</html>

Edit:

<?php
include 'conn.php';
extract($_GET);
$abc="SELECT * from student where stud_id='$stud_id' ";

$result=$conn->query($abc);
$data=$result->fetch_array();

if($_POST){
        extract($_POST);

        $abc = "UPDATE student SET name='$name',address='$address',email='$email',password='$password' WHERE stud_id='$stud_id'";

        if ($conn->query($abc) === TRUE){
        header("location:view.php?msg=updated");
    }
    else{
        echo "not updated";
    }
}
$conn->close();

?>
<html>
<head>
<title>Stud Registration</title>
</head>
<body>
<form action="" method="POST">
<table border="1">
<tr>
<th>Stud ID</th>
<td><input type="text" name="stud_id" value="<?php echo $data['stud_id'] ?>"></td>
</tr>
<tr>
<th>Name</th>
<td><input type="text" name="name" value="<?php echo $data['name'] ?>"></td>
</tr>
<tr>
<th>Address</th>
<td><input type="text" name="address"value="<?php echo $data['address'] ?>"></td>
</tr>
<tr>
<th>Email</th>
<td><input type="email" name="email"value="<?php echo $data['email'] ?>"></td>
</tr>
<tr>
<th>password</th>
<td><input type="password" name="password" value="<?php echo $data['password'] ?>"></td>
</tr>

<tr>
<td><input type="submit" name="insert" value="insert"></td>
<td><input type="submit" name="view" value="view">
</td>
</tr>
</table>
</body>
</html>


Delete:

<?php
    include "conn.php" ;
    extract($_GET);
    $abc = "DELETE FROM student WHERE stud_id='$stud_id'";

    if($conn->query($abc) === TRUE){
        header("location:view.php?msg=Deleted");
    }
    else{
        header("location:view.php?msg=Error");   
    }

    $conn->close();
?>
 

Database Snap::



Core PHP Insert Update View Delete

Core PHP Insert Update View Delete

Code:

Main:

<html>
<form name="detail" action="insert.php" method="post" enctype="multipart/form-data">
<table>
<tr><td>Name</td><td><input type=text name=nm></td></tr>
<tr><td>Description</td><td><textarea name=desc></textarea></td></tr>
<tr><td>Price</td><td><input type=text name=price></td></tr>
<tr><td>Stock</td><td><input type=text name=stock></td></tr>
<tr><td>Date</td><td><input type=text name=dt value=<?php echo date('Y-m-d');?>></td></tr>
<tr><td>Hobbies</td><td><input type="checkbox" name="chk[]" value="cricket">cricket
                        <input type="checkbox" name="chk[]" value="chess">chess
                        <input type="checkbox" name="chk[]" value="football">football</td></tr>
<tr><td>Profile Picture</td><td><input type="file" name="photo"></td></tr>
<tr><td>Gender</td><td><input type=radio name=gender value=male>Male<input type=radio name=gender value=female>Female</td></tr>
<tr><td>Qualification</td><td><select name=qualification><option>MBA</option><option>MCA</option></select></td></tr>
<tr><td></td><td><input type=submit name=submit value=Insert></td>
</tr>
</table>
</form>
</html>

<form name="sort" method="post">
<input type=submit name=stock value=stock>
<input type=submit name=price value=price>
</form>

<body>
<table border=1>
<tr><th>Name</th>
    <th>Description</th>
    <th>Price</th>
    <th>Stock</th>
    <th>Date</th>
    <th>Profile Pic.</th>
    <th>Gender</th>
    <th>Qualification</th>
    <th colspan='2'>Action</th>
</tr>
<?php
$con=mysql_connect('localhost', 'root','');

$db=mysql_select_db("detail",$con);

$select="select * from detail";
$query=mysql_query($select);
if(isset($_POST['stock']))
{

$select="select * from detail order by stock desc";
$query=mysql_query($select);
}
if(isset($_POST['price']))
{

$select="select * from detail order by price";
$query=mysql_query($select);
}


while($row=mysql_fetch_array($query))
{
    echo "<tr>
                <td>$row[1]</td>
                <td>$row[2]</td>
                <td>$row[3]</td>
                <td>$row[4]</td>
                <td>$row[5]</td>
                <td><img src='data/$row[7]' height=50 width=50 /></td>
                <td>$row[8]</td>
                <td>$row[9]</td><td><a href='update.php?id=$row[0]'>Update</a></td><td><a href='delete.php?id=$row[0]'>Delete</a></td>
            </tr>";
}
?>
</table>
</body>


Insert :

 <?php

$con=mysql_connect('localhost', 'root','');
$db=mysql_select_db("detail",$con);

$nm=$_POST['nm'];
$desc=$_POST['desc'];
$price=$_POST['price'];
$stock=$_POST['stock'];
$gender=$_POST['gender'];
$qualification=$_POST['qualification'];
$dt=$_POST['dt'];
$photo=$_FILES['file']['name'];
move_uploaded_file($_FILES['file']['tmp_name'],"data/".$_FILES['file']['name']);
$hobby=$_POST['chk'];
$hb=implode(",",$hobby);
$ins="insert into detail values('','$nm','$desc','$price','$stock','$dt','$hb','$photo','$gender','$qualification')";
$query=mysql_query($ins);

header("location:detail.php");

?>

Update :

<?php

$con=mysql_connect("localhost","root","");
$db=mysql_select_db("detail",$con);

$id=$_GET['id'];
//echo $id;
$sel="select * from detail where id=$id";
$query=mysql_query($sel);

$row=mysql_fetch_array($query);
echo mysql_error();

?>

<html>
<form name="detail" method="post" enctype="multipart/form-data">
<table>
<tr><td>Name</td><td><input type=text name=nm value=<?php echo $row[1]; ?>></td></tr>
<tr><td>Description</td><td><textarea name=desc ><?php echo $row[2]; ?></textarea></td></tr>
<tr><td>Price</td><td><input type=text name=price value=<?php echo $row[3]; ?>></td></tr>
<tr><td>Stock</td><td><input type=text name=stock value=<?php echo $row[4]; ?>></td></tr>
<tr><td>Date</td><td><input type=text name=dt value=<?php echo $row[5]; ?>></td></tr>
<?php
   
?>
<tr><td>Hobbies</td><td><input type="checkbox" name="chk[]" <?php $chk=explode(",",$row[6]); for($i=0;$i<count($chk);$i++) if($chk[$i]=='cricket') echo 'checked="checked"'; ?> value="cricket">cricket
                        <input type="checkbox" name="chk[]" <?php $chk=explode(",",$row[6]); for($i=0;$i<count($chk);$i++) if($chk[$i]=='chess') echo 'checked="checked"'; ?>value="chess">chess
                        <input type="checkbox" name="chk[]" <?php $chk=explode(",",$row[6]); for($i=0;$i<count($chk);$i++) if($chk[$i]=='football') echo 'checked="checked"'; ?> value="football">football</td></tr>
<tr><td>Profile Picture</td><td><input type="file" name="photo"></td></tr>
<tr><td></td><td><img src=data/<?php echo $row[7]; ?> height=100 width=100></td></tr>                       
<tr><td>Gender</td><td><input type=radio name=gender value=male <?php if($row[8]=='male') echo 'checked="checked"'; ?>>Male<input type=radio name=gender value=female <?php if($row[8]=='female') echo 'checked="checked"'; ?>>Female</td></tr>
<tr><td>Qualification</td><td><select name=qualification><option <?php if($row[9]=='MBA') echo 'selected="selected"'; ?> >MBA</option><option <?php if($row[9]=='MCA') echo 'selected="selected"';  ?> >MCA</option></select></td></tr>
<tr><td></td><td><input type=submit name=submit value=Update></td>
</tr>
</table>
</form>
</html>

<?php
error_reporting(0);
    $nm=$_POST['nm'];
    $desc=$_POST['desc'];
    $price=$_POST['price'];
    $stock=$_POST['stock'];
    $photo=$_FILES['photo']['name'];
move_uploaded_file($_FILES['photo']['tmp_name'],"data/".$_FILES['photo']['name']);
$date=$_POST['dt'];
    $hobby=$_POST['chk'];
$hb=implode(",",$hobby);
    $gender=$_POST['gender'];
    $qualification=$_POST['qualification'];
    $id=$_GET['id'];
    error_reporting(0);
    if(isset($_REQUEST['submit']))
    {
        //echo "hi";
        $up="update detail set name='$nm',description='$desc',price='$price',stock='$stock',photo='$photo',date='$date', hobby='$hb',gender='$gender',qualification='$qualification'  where id='$id'";
        $query=mysql_query($up);
        echo mysql_error();
        //header("location:detail.php");
        echo "<script>location.href='detail.php'</script>";
    }
   
?>



Delete:

<?php
$con=mysql_connect("localhost","root","");
$db=mysql_select_db("detail",$con);
$id=$_GET['id'];
$del="delete from detail where id=$id";
mysql_query($del);
header("location:detail.php");
?>





 

Thursday 10 March 2016

Disable Auto-playing Videos on Facebook

Disable Auto-playing Videos on Facebook

Now you have Probably Noticed that many of the videos in your news feed now start playing automatically as soon as they load. And like me, you might find that a bit distracting to You.


Simply, it’s very easy to Disable Auto-play Videos on Facebook. Just follow up these steps: 
1 – Log in to your Facebook account.
2 – Click the Down Arrow located in the upper right-hand corner of the window.
3 – Click Settings.
4 – Click the Videos link over in the left-hand column.
5 – Toggle the “Auto-Play Videos” setting to Off.
That’s all there is to it. From now on you shouldn’t see any of the videos in your newsfeed begin to play on their own before you click on them.

Free to Use Social Media Without any Newsfeed. 
Note: If you use Facebook on a mobile device and your version of the app allows you to disable auto-playing videos, you’ll find that setting somewhere in the settings Menus.

Saturday 24 October 2015

Amazing Interesting Facts About Bill Gates

Amazing Interesting Facts About Bill Gates



We All Know Microsoft Founder Bill Gates. Bill Gates is an American investor, computer programmer, inventor and a former chair person of Microsoft, the world’s largest software company. 
Since 1995, he is consistently ranking at 1st position in the Forbes list of world’s wealthiest people, except 2008, when he was ranked 3rd. You might not know but every second bill gates earns around 250$ and every minute he earns 15000$. Surprised? To surprise you more, today we are going to share an article on interesting Bill Gates Facts, This article contains some of the lesser known Bill Gates facts about his education, life and wealth.
Bill Gates Facts: 

1. Bill gates started writing computer programs when he was only thirteen years old. The first computer program he developed was a tic tac toe game, in which the user can play against computer.

2. He knew he would be millionaire one day. In school he bragged to his teachers that he would be millionaire by the age of 30, However he became a billionaire at the age of 31.

3. He sold his first software at the age of 17 for $4200 to his high school. It was a time-tabling system.

4. He scored 1590 out of 1600 in SAT (Scholastic Aptitude Test). SAT score of 1590 corresponds to an IQ of 170. Later, On the basis of SAT score, He got admission in Harvard University.

5. Bill Gates was a college dropout. He left Harvard during his junior year. However, in 2007 he finally got a degree from Harvard, when the Harvard University granted him with an honorary degree.

6. He founded Microsoft at the age of 20 with Paul Allen on April 4, 1975. So far, Microsoft is biggest software company.

7. One of the industry executive said that, after he showed a game and defeated gates by 35 out of 37 times, when they met again a month later, Gates “Won or tied every game”. In that 1 month, gates had studied that game.

8. He got married with Melinda French on New Year’s Day. Gate and Malinda have 3 children.

9. He lives in a 66,000 square feet house, which is famous for its design and technology. Most of the part of house is built underground in the hill and is situated at the edge of lake Washington.

10. Recently bill gate has announced that he will not leave his fortune to kids. His children will only inherit US $10 Million Each, Out of his US $72 Billion net worth.

11. Since 1995, he was ranking at 1st position in Forbes list of world’s wealthiest people, except 2008 when he was ranked at 3rd position with estimated net worth of $58 billion. In 2008 Warren Buffet ranked at the top with the estimated net worth of $62 billion. Position 2nd is had taken by Carlos Slim, with an estimated net worth of $60 billion.

12. If Bill Gates were a country, he will be the 37th richest country on the globe.

13. Bill Gates can donate $15 to everyone on earth and still be left with $5 Million for his pocket money.

14. If he drops a 1000$, He won’t even bother to pick it up because in the 4 seconds it takes to pick it up, He would have already earned it back.

15. If you change all of Bill Gate’s money to US $1 notes, you can make a road from earth to moon, 14 times back and forth.

16. Bill Gates has saved over 5 million lives by donating more than half of his wealth over vaccines and children healthcare.

17. Bill Gates is 40 this year, and if we assume that he will live at least 35 years more, than he have to spend at least $6.78 Million per day to finish all his money before he can go to heaven. 

18. Apart from computer programmer, He is also an author; he has authored 2 books, The Road Ahead and Business the Speed of Thought.