Latest News

Featured
Featured

Entertainment Latest Topics

Technology

Video

Games

Recent Posts

Friday, January 27, 2017

Download Samsung GALAXY Tab S 10.5 SM-T800 Stock ROM and recover your Android Device

Samsung GALAXY Tab S 10.5 SM-T800 Stock ROM Complete Tutorial

How To Recover your Samsung GALAXY Tab S 10.5 SM-T800 Stock ROM Flash Using Odin Tool


Are you looking for a solution for your Android device well this tutorial is intended only for Samsung GALAXY Tab S 10.5 SM-T800 users, this will let you restore your device from original installed from where you first bought your Samsing Galaxy Tab, this is a complete tutorial for flashing your device, and make sure you download the required files like Stock ROM and the Odin Tool To Flash.

For the full Tutorial and complete files we would like to introduce you our official website for Stock ROM, Custom Rom for Android. just click the button below and make sure you follow the complete step.


Visit our Official Blog at:

Tuesday, January 24, 2017

#1 Free Download Movies PH Website is More Secure

Movie Website and #1 Movie Website is More Secure

Are you looking for more trusted and secure website for movies reviews, storyline? Well a website that is being started last year (2016) is now getting more aware of the importance of having a secured site so they recently installed and applied SSL Certificate to improve user experience and capabilities the web site can be visited on the link we are going to provide you below.


The said website is intended really for Filipino who love watching movies this includes a different movie category and first of it is a Pinoy Movies, Hollywood, Hindi Film, Korean Movies and many other country, they are also open for having a movie request, and ofcourse a great movie post for new and latest movies release.

This movie site doesn't provide any hosting movie, this is really pure movie synopsis, reviews and movie trailers that is embeded from popular video streaming called YouTube that is also own and manage by Google company.

Free Download Movies PH is one of the best movie site you can visit, and you can share this with ypur friends if you like.

Free Download Movies PH Website Partner

Well having a partner is one of the greatest thing we can have in our life but what if I will tell you a story that the website I meantioning you above is also have a website partner which will be tacled below and I will explain their main niche.


  • InfoMobileWeB Blog 
  • TrendingPost
InfoMobileWeb Blog

Let's just talk about first this website, well base on our observation this website have a complete full name of "Information Mobile Website" they are focusing more on Mobile apps, games, Stock ROM and Custom ROM for android, tips and tricks for android, PC game Reviews, WordPress tutorials and News, well you can visit their website to get experience and I bet they also accept request of a review or blog post.

Trending Post

This is also a website partner of Free Download Movies PH which is their main topic is all about entertainment, news, viral, Website tool reviews, top and best apps, Premium WordPress Themes Free Download or nulled, and many more so if you have time you can also check their website here.




Thursday, January 5, 2017

After Sales Service Manager Download Source Codes

Submitted by: 
Language: 

Visitors have accessed this post 586 times.

                                   Download PHP Source Code Below


Hello friends, happy New Year to you all. I am posting this project to this platform
To express my deep appreciation to the management of Sourcecodester, Raj Shama whose
Insightful programming ideas have as well been of great and invaluable help to me in my programming adventure and to all of the members of the forum who share there ideas. I thank you all.
The project is written in vb.net 2010 as front end with sql server 2008 as back end. You can use Admin as the user name and admin as password. Though there is a user account to log in which give less application right as that of the admin, check this out in the database table ITM_ACOCUNT. Remember to change the connection string to match yours.
The application manages the items returned to an establishment for after sales service/repair. It is my wish that others too, learn from this, though not very perfect, but you can improve it.
Thank you.
PHP CODES

Student Information Management System

Submitted by: 
Language: 
Visitors have accessed this post 706 times.

                   Download PHP Source Code Below


This Project written in VB.NET as front end and SQL Server 2005 as Back end.
Main Features are:
  1. SMS :
    1. Add New Student
    2. Add New Course
    3. Add New Class
    4. Add New User
    5. Update User
    6. Search User
    7. Delete User
    8. Update Student
    9. Search Student
    10. Delete Student
    11. Update Class
    12. Search Class
    13. Delete Class
Please don't forget to give credit to original developer because. I have develop this module for students.
For students or anyone else who needs program or source code for thesis writing or any Professional Software Development,Website Development,Mobile Apps Development at affordable cost
contact me at
Email : Sagar@codingvisions.com
Facebook : https://www.facebook.com/SAGAR.M.5524
skype- sagarmaher2@hotmail.com
WhatsApp or Viber or Contact - +918308075524
Hangout- sagarmaher2@gmail.com
PHP CODES

Build Basic Registration Using MySQLi Prepared Statement

Submitted by: 
Language: 
Visitors have accessed this post 431 times.
In this tutorial, we will create a simple registration form using MySQLi prepared statement. it is an advanced and secured kind of script to prevent MySQL injection threat. Due to depreciated of MySQL most of the website are required to use MySQL / PDO statement. Now be prepared, let's start coding
1. We open the database server, then type localhost/phpmyadmin
2. Then name the database "sample"
3. After creating the database, click SQL and paste the code below
  1. CREATE TABLE IF NOT EXISTS `user` (
  2. `user_id` int(11) NOT NULL AUTO_INCREMENT,
  3. `username` varchar(50) NOT NULL,
  4. `password` varchar(50) NOT NULL,
  5. PRIMARY KEY (`user_id`)
  6. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Creating HTML form
After setting up the database, we will create the HTML form, The code below will display a simple registration form. To create a form, open any kind of text editor (notepad++, etc.). Then copy the code below, paste it inside the body tag, name it "index.php"
  1. <div id = "content">
  2. <form method = "POST" action = "submit_query.php">
  3. <table>
  4. <tr>
  5. <td><label>Username:</label></td>
  6. <td><input type = "text" name = "username" required = "required"></td>
  7. </tr>
  8. <tr>
  9. <td><label>Password:</label></td>
  10. <td><input type = "password" name = "password" required = "required"></td>
  11. </tr>
  12. <tr>
  13. <td colspan = "2"><br /></td>
  14. </tr>
  15. <tr>
  16. <td colspan = "2"><button style = "width:100%;" name = "save">Save</button></td>
  17. </tr>
  18. </table>
  19. </form>
  20. </div>
Then, we will add some design for the form, just copy and paste it inside the head tag
  1. <style>
  2. #content{
  3. background-color: #ffeecc;
  4. width:280px;
  5. height:110px;
  6. margin: 100px auto;
  7. padding:10px;
  8. border-radius:2px;
  9. -webkit-box-shadow:0px 0px 30px 3px #000;
  10. }
  11. </style>
Next, we will create the database connection, just copy the code below, then name it "connect.php"
  1. <?php
  2. $conn = new mysqli('localhost', 'root', '', 'sample');
  3. if($conn->connect_error){
  4. die("Fatal Error: Can't connect to database: ". $conn->connect_error);
  5. }
  6. ?>
Lastly, we will now create the script for saving the data from the HTML form. The code below holds the data that has been input in the HTML form, then it will directly send to database server. Just copy the code below, then name it "submit_query.php"
  1. <?php
  2. require_once 'connect.php';
  3. if(ISSET($_POST['save'])){
  4. $username = $_POST['username'];
  5. $password = $_POST['password'];
  6. $func = $conn->prepare("INSERT INTO `user` (username, password) VALUES(?, ?)");
  7. $func->bind_param("ss", $username, $password);
  8. $func->execute();
  9. $func->close();
  10. $conn->close();
  11. header('location:index.php');
  12. }
  13. ?>
There you have it, we created a simple registration form. I hope that this tutorial help you to your projects. For more tutorials and updates, just kindly visit this site. Enjoy Coding!!!
PHP CODES
Videos

Recent Post