Wednesday, October 23, 2013

How will the Apple Company handle some of the issues that occur on their new released products and soon?

I’m my own opinion Apple can stay at the top and nothing can beat them if.. But before I answer this question I want you all to know that there are some companies are making a new set of technologies to beat the Company that is on the top of the list by using the ideas and the products for testing purposes it could a great phone in the world, because they are creating a software that can surpass the OS that is being use of the “King of Smartphone”. There are some company also develops just looks like an iphone but have a very good twist and tweak. Yeah! If some of you read the articles in yahoo you get what I mean. the “xiaomi” correct me if I’m wrong or in English “Chinese Apple“  are the Chinese company who creating a very awesome toys, I mean Smartphone now a days. They are now climbing to the top to see what I mean..

Here are the xiaomi smartphone that is being released just this week.



Status: Working!

Wednesday, September 25, 2013

Download Android Files and install it in your Windows

Good day Guys

Topic for today: 
How to install the " Android (apk) files "  in your windows Computer?

Here's the Screen Shot for this topic.

And its working fiine! because currently im using the whatsapp.apk to chat with my love at work today.


Status: Working!

Tuesday, September 24, 2013

Instagram looks like an iphoneogram


Awesome!

Yeah, Instagram just update their site, now we can view more and more photos than the old one. But i really hope that we can register a new accounts in an instagram on our personal computers.. I do have an instagram using my android phone but how about the others. i think most of the person we follow in twitter.. updates their instagram everyday right?

Hope, the team referring to instagram developer makess instagram will be an open field to anybody..

thanks..

Status: Done!

Monday, September 23, 2013

New about this Blog

Posting 3 stories in a week that makes you very interesting :D


Status: Done!

Weird Food but Yummy

Good day!

How many weird foods did you eat so far, me? a lot. I love to experiment my ways of cooking and sometime I end up with weird outlooks but taste delicious as well.

hahahaha i think i gonna love it!

1. Mongo with Sardines - Recently i ate this one, the appearance maybe not as presentable as it could be but hey, before judging, its better to grab one rather than not tasting it at all.

Ingredients:
1 can of sardines with tomato sauce
1 glass of mongo
1 clove of garlic
1 onions
Seasonings (it depend in your taste buds)
Oil

How to prepare?
1. First, Boil the mongo 3 to 4 hours, take note you have to put plenty of water.
2. When the mongo is done, set aside
3.Then garlic, followed by onions then sardines
4. Put the step 3, ingredients to the pot where mongo located.
5. let simmer maybe 3 to 5 minutes.
6. Done



Status: Done!

Thursday, September 19, 2013

How to test your Laptop After you Bought one?

Good Day!

How will you test your Laptop after you buy ..? and make the warranty card useful?

You have only one thing to do, to answer all your questions in your mind.

1. After you buy, Let it stay open for a days mean.. you have to turn on your new toys for almost 2 to 3 days..

without being plug to the outlet

Why?

To check the Following:

- to test how long will your unit last for a day.. because some gadgets last only to 2 or 3 hours with moderate use only, watching 1 movies and make 1 document and playing minesweeper..If you find it this way.. Maybe your Laptop have a defect when it comes to battery..

-Laptop Temperature - Some Laptop's they heat faster that can fry an egg.. I recommend if this would happen, it better to change it.. instead of buying a fan to let it cool.. i disagree with that.

-Hard Use-  Play some movies, musics,Play Games, That is what i trying to say.

-Check your DVD/CD drive- Some laptop after 2 or 3 days they stop working. How much you try to reformat your laptop its useless.. better to change it right away or you will be suffering a lot more..

Being plug in the Outlet

Why?

To check the Following:

-Laptop Temperature-Some Laptop's they heat faster that can fry an egg.. I recommend if this would happen, it better to change it.. instead of buying a fan to let it cool.. i disagree with that.

-Check your DVD/CD drive- Some laptop after 2 or 3 days they stop working. How much you try to reformat your laptop its useless.. better to change it right away or you will be suffering a lot more..

-To Avoid your Battery icon looks like this.. if you keep it being plug for 1 day.


- Your Unit will shutdown automatically.

That's it.. This is only my point of view of what I have experience of today..
I recommend to keep it running for 2 to 3 days..


And Avoid to Buy " ACER LAPTOP and NETBOOK ", they heat faster!

Thanks for reading!


Status: DONE!


Inserting Separate Field into 1 field with different table using Php

Good day!

How to insert separate field into one?

Example:
In your database the 1 table name tbl_applicant composed of the following fields...

|id                   | lastname                   | firstname        |   middlename|



And you wonder that if you want to get the data you have to transfer in one place by using combobox/list...

Example:
I have this table named " tbl_results ".. and i want to show the names from tbl_applicant  in their correct format so it look like this:



Here the code if you want to display 3 fields.. in a combobox..

Code:
<?php
 $con = mysql_connect("localhost","root","");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("er", $con);
$name= mysql_query("SELECT * from tbl_applicant ORDER by lastname ASC");

echo '<select name="aname" class="mySelect3">';
echo '<option>---SELECT NAMES---</option>';
 while($res= mysql_fetch_assoc($name))

{

echo '<option>';
echo $res['lastname'].' ,'.$res['firstname'].''.$res['middlename'];
echo'</option>';
}
echo'</select>';

mysql_close($con)


?>

the Output is the picture on upper side before this text..

if you want to insert this into database you have to name the insert query into "aname"..

Here's the code:

if(isset($_POST["submit"]))
{
$insdb ="INSERT INTO tbl_results(applicant_name) VALUES
('$_POST[aname]')";
mysql_query($insdb,$link);
 echo "<script>alert('Successfully Added!')</script>";
}

That's it!

If you have question regarding this topic or OT that is not understandable in you part, don't hesitate to comment below..
thanks..

Thanks.

Status: Done!