Menu
Author

Vivek Moyal

Hello i am Vivek Moyal PHP developer and writes tutorials for students and beginners. Love to explore new cities

Samsung Will Use Metal Panel in Smartphones

Samsung is one of worlds biggest Smartphone manufacturer after the android release. After releasing many smartphone’s and  budget phones company is thinking for using the Metal Panels on place of Plastic panels. Recently we have seen that there were rumors about using the carbon fiber. But now company is going for Metal one’s whereas Apple is going to use the…

Compress PHP Website With GZIP

PHP, Tech-Byte By Aug 06, 2013 1 Comment

Compress Website with GZIP I was checking some websites yesterday and i saw they took too much time to load. And i have to wait till website opens and it was just horrible. So i thought why people dont use the gzip which will help them to make their website perform faster. So here i am giving a simple script…

Highlight Current Page Navigation Using Jquery

Jquery By Aug 05, 2013 No Comments

Yesterday i was working over my project and after making navigation and put this navigation in a file and using with the help of Include. I came to know that my navigation is not getting highlighted when i open the particular page. I just got same style in all the navigation tabs. Like below image. HTML <div class=”navigation-content”> <ul> <li><a…

Jquery Selector – For Selecting Elements,ID,Class

Jquery By Jul 14, 2013 No Comments

Jquery Selector Using Jquery is making your web page more flexible and more working. Using Javascript was bit old and now we have Jquery which is based on Javascript and creates the DOM with less code. So here we will discuss how we will select the elements in Jquery. HTML  Tags (ID, Class) Selecting HTML elements in Jquery is easy…

Spice Pinnacle FHD Android Smartphone on 1.5 Quad Core @ 16990

Mobile By Jul 12, 2013 1 Comment

Spice has launched its new and first smartphone in the HD Series and its not only HD its Full HD. 5 inch screen with Full HD provides great experience of watching movies or videos. With 1 GB RAM and 1.5 Quad Core Processor you can play and run most of the Android apps over this phone. With inbuilt 8 MP…

Simple XML – Use XML in PHP

PHP By Jul 08, 2013 No Comments

Now these days XML and Json are the best ways for data transfer. Here is the code for how to use the XML in PHP. We will use 2 ways to read the XML File in PHP. 1. Reading xml file using DOM 2. Reading xml file using Simple XML result in Table Reading xml file using DOM $xml=new DOMDocument(); $xml->load(“Details.xml”); $details=$xml->getElementsByTagName(“details”);…