Thursday, August 28, 2014

JQuery Mobile: Connecting & Inserting Data to the database (MySQL)

Good Day blogger,

Today I will teach you how to Insert data from mobile app to MySQL Server.
How this program work? look at this flow chart.


ok lets start.
Step1: Create your HTML File and name it index.html and inside of html file are these.
<html>
<head>
<title>Imperial Softwares</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="themes/imperialsoft.min.css" />
<link rel="stylesheet" href="themes/jquery.mobile.icons.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script> <script>
$(function(){
$('#btnSubmit').click(function(){
var Lname = $("#txtLastname").val();
var Fname = $("#txtFirstname").val();
var Add = $("#txtAddress").val();
$.ajax({
type: 'POST',
//change the url for your project
url: 'http://192.168.1.83/mobile/save.php', //Url of your php file
data: 'lastname='+Lname+'&firstname='+Fname+'&address='+Add,  //parameters of you software
success: function(data){
alert('Your comment was successfully added');
}
});
return false;
});
});
</script>    
</head>
<body>
<div data-role="page" id="LoginPage" data-theme="d">
<div data-role="header" >
<h1>ISS Tutorial</h1>
</div>
<div role="main" class="ui-content">
<div id="landmark-1" data-landmark-id="1">
<form>
<h2><u>Insert data in MySQL</u></h2>
<label for="txtLastname">
<b>Lastname</b>
<input type="text" id="txtLastname" name="txtLastname">
</label>
<label for="txtFirstname">
<b>Firstname</b>
<input id="txtFirstname" name="txtFirstname" />
</label>
<label for="txtAddress">
<b>Address</b>
<textarea id="txtAddress" name="txtAddress"></textarea>
</label> <br />
<input type="submit" value="Submit" id="btnSubmit">
</form>
</div>
</div>
</div>
</body>
</html> 
 a little explanation.

$.ajax({
type: 'POST',
//change the url for your project
url: 'http://192.168.1.83/mobile/save.php', //Url of your php file
data: 'lastname='+Lname+'&firstname='+Fname+'&address='+Add,  //parameters of you software
success: function(data){
alert('Your comment was successfully added');
}
});
this is the ajax script that you will use to be able to throw a request to your data server.
I put paramater so that my php script can get what data will be return.

Step 2: Create a PHP File and name it save.php, inside of PHP File are these. take note this file should be place on your webserver in WAMP (C:/wamp/www), in LAMP (var/www/html), in XAMPP (C:/xampp/htdocs).

<?php
$server = "locahost";
$username = "root";
$password = "lester";
$database = "test";
$con = mysql_connect($server, $username, $password) or die ("Could not connect: " . mysql_error());
mysql_select_db($database, $con);
$lname = $_POST["lastname"];
$fname = $_POST["firstname"];
$add = $_POST["address"];
$sql = "INSERT INTO tbluser (lastname, firstname, address) ";
$sql .= "VALUES ('$lname','$fname', '$add')";
if (!mysql_query($sql, $con)) {
die('Error: ' . mysql_error());
} else {
echo "Data added";
}
mysql_close($con);
?>
Step 3: Create your Database and Data Table in data server.
 CREATE DATABASE IF NOT EXISTS test;
CREATE TABLE `tbluser` (  `id` int(10) unsigned NOT NULL auto_increment,
  `lastname` varchar(255) default NULL,
  `firstname` varchar(255) default NULL,
  `address` text,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;


Thank you blogger! Help me to share it. :)

Follow me for more topic I will share. and visit my facebook page.
www.facebook.com/AskCompTutor
 

JQuery Mobile: Compiling your project as mobile app.

Good day blogger,

Today i will show you how to compile as mobile application your JQuery Mobile project. first you need to know Phonegap.
PhoneGap is a mobile development framework produced by Nitobi, purchased by Adobe Systems in 2011. It enables software programmers to build applications for mobile devices using JavaScript, HTML5, and CSS3, instead of device-specific languages such as Objective-C. It enables wrapping up of HTML, CSS and Javascript code depending upon the platform of the device. It extends the features of HTML and Javascript to work with the device. The resulting applications are hybrid, meaning that they are neither truly Mobile native application native (because all layout rendering is done via web views instead of the platform's native UI framework) nor purely web-based (because they are not just web apps, but are packaged as apps for distribution and have access to native device APIs). From version 1.9 onward it is even possible to freely mix native and hybrid code snippets.
to know more about PhoneGap just go to this site
ok let's start, its very simple.

Step 1: Put all your files in a folder.



Step 2: Compress it and make it .zip file.


Step 3: go to build.phonegap.com and Sign In


Step 4: upload your .zip file in Private application.


Step 5: download any format you want, take not IOS, BlackBerry,HP and the other one is red.
its because you need to buy their license .


That's it!  Thank you blogger! Help me to share it. :)
Follow me for more topic I will share. and visit my facebook page.
www.facebook.com/AskCompTutor


Wednesday, August 27, 2014

Introduction to JQuery Mobile.

jQuery Mobile is a user interface framework based on jQuery that works across all popular phones, tablet, e-reader, and desktop platforms. Built with accessibility and universal access in mind, we follow progressive enhancement and responsive web design (RWD) principles. HTML5 Markup-driven configuration makes it easy to learn, but a powerful API makes it easy to deeply customize the library.

Mobile page structure

lets try to create a simple mobile app. create a html file and name it index.html inside of it is this code.

<!DOCTYPE html> 
<html>
<head>
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/[version]/jquery.mobile-[version].min.css" />
<script src="http://code.jquery.com/jquery-[version].min.js"></script>
<script src="http://code.jquery.com/mobile/[version]/jquery.mobile-[version].min.js"></script>
</head>
<body>
...content goes here...
</body>
</html>
Viewport meta tag

Note above that there is a meta viewport tag in the head to specify how the browser should display the page zoom level and dimensions. If this isn't set, many mobile browsers will use a "virtual" page width around 900 pixels to make it work well with existing desktop sites but the screens may look zoomed out and too wide. By setting the viewport attributes to content="width=device-width, initial-scale=1", the width will be set to the pixel width of the device screen.
<meta name="viewport" content="width=device-width, initial-scale=1">
These settings do not disable the user's ability to zoom the pages, which is nice from an accessibility perspective. There is a minor issue in iOS that doesn't properly set the width when changing orientations with these viewport settings, but this will hopefully be fixed in a future release. You can set other viewport values to disable zooming if required since this is part of your page content, not the library.
Inside the body: Pages

Inside the <body> tag, each view or "page" on the mobile device is identified with an element (usually a div) with the data-role="page" attribute.
<div data-role="page">
...
</div>
Within the "page" container, any valid HTML markup can be used, but for typical pages in jQuery Mobile, the immediate children of a "page" are divs with data-role="header", class="ui-content", and data-role="footer".
<div data-role="page">
<div data-role="header">...</div>
<div role="main" class="ui-content">...</div>
<div data-role="footer">...</div>
</div>
Putting it together: Basic single page template

Putting it all together, this is the standard boilerplate page template you should start with on a project:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/[version]/jquery.mobile-[version].min.css" />
<script src="http://code.jquery.com/jquery-[version].min.js"></script>
<script src="http://code.jquery.com/mobile/[version]/jquery.mobile-[version].min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div role="main" class="ui-content">
<p>Page content goes here.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>
source: jquerymobile.com


How it looks like.

That's it!  Thank you blogger! Help me to share it. :)

Follow me for more topic I will share. and visit my facebook page. 
www.facebook.com/AskCompTutor


Simple login form using AJAX

Good day Blogger,

today i want to share how to create a login form using ajax as a post method.
first you need to create a html login form.


here is my sample code. 

    HTML File (index.php)

then create a css file to design your form. to be more organize create a css folder and put it there. 

here is my css code.

CSS FILE (style.css)

body{ background-color:#C0C0C0; margin:0; !important }

div#login_screen { margin-top:220px; }

.login_screen_header {border:2px solid #000;border-top-left-radius:5px;border-top-right-radius:5px;height:25px;width:400px;background-color:#0033CC;padding-top:5px;box-shadow: 10px 10px 5px #888888;}

.login_screen_header_text {color:#FFFFFF;font-family:"Lucida Console", Monaco, monospace;}

.login_screen_body {border-bottom:2px solid #000;border-left:2px solid #000;border-right:2px solid #000;border-bottom-left-radius:5px;border-bottom-right-radius:5px;height:135px;width:400px;background-color:#E0E0E0;padding-top:5px;font-family:"Lucida Console", Monaco, monospace;padding-top:30px;font-size:13px;box-shadow: 10px 10px 5px #888888;}

input[type="text"] , input[type="password"] {border:1px solid #000;font-family:"Lucida Console", Monaco, monospace;padding:5px;width:130px;border-radius:5px;}

#btnLogin {border:1px solid #000;font-family:"Lucida Console", Monaco, monospace;padding:5px;
width:100%;height:25px;border-radius:5px;background-color:#0033CC;color:#fff;font-weight:bold;
background-image: radial-gradient(center 0, circle farthest-corner, rgba(255,255,255,0.4), rgba(255,255,255,0));}

#btnLogin:active {background-color:#707070;}

.comsig {margin-top:23px;margin-right:5px;float:right;font-size:9px;}

then create create a folder name it scripts. create a js file name it script.js
inside of js file create a function that execute the ajax.

JS FILE (script.js)


then create a PHP file. name it login.php inside the login.php file is your query that calls everything you need in order login. and echo out the result of requested data.

PHP FILE (login.php)


in order to run all of this, ofcourse you need to create a PHP file that connects your login.php to MySQL server. now create a PHP file and name it config.php. inside of config file is this.

PHP FILE (config.php)



That's it! 
Thank you blogger! Help me to share it. :)

Follow me for more topic I will share. and visit my facebook page. 
www.facebook.com/AskCompTutor

Monday, August 11, 2014

How to Setup Web Server (LAMP Server)

Good day blogger,

today i want to share or teach you how to setup a web server (Lamp Server), we will use Ubuntu Server.
first, we need to download the latest version of Ubuntu Server. after you download it. lets get started.

This are the basic steps in installing Ubuntu Server.


  1. Boot the system from the CD-ROM drive.
  2. At the boot prompt you will be asked to select the language.
  3. Select 'basic server install'.
  4. Enter appropriate options for language, keyboard layout, network configuration, hostname and timezone.
  5. You can then choose from several options to configure the hard drive layout. There are many ways disk layout can be configured.
  6. The Ubuntu base system is then installed.
for more info and what its look like, click this.

That's it! thank you for visiting my blog. Help me to share it. :)


Follow me for more topic I will share. and visit my facebook page.
www.facebook.com/AskCompTutor

source: 
credit to the owner.

Saturday, August 9, 2014

Web Developing in LINUX.

Good day blogger,


Today i want to share where am i creating my web program, and as a IT person, i need to explore world wide web, being a web developer is cool and you can improve you're logical skills. so lets go to the topic now. in coding at Linux is difficult at first, of course. Most school are using Adobe Dreamweaver, Notepad++, etc. yeah, it's cool but if you learn to use vim edit (Linux Text Editor) it more cooler. have you ever watch the movie Internship? the movie about 2 businessman that are out of the trend. Try to watch it. you can learn about teamwork. ha ha why did i put it on the topic? because that movie is at Google. I think the Google developers are using LAMP Server. and they code in Linux.

The tool that need are.

  • Web Server (LINUX SERVER OS ex. CentOS, Ubuntu Server) that has LAMP Server
  • PUTTY (for SSH)
  • Local Client that has access your network or thru internet.
What is PUTTY?    Putty are the software you will use to connect to your Webs Server. 
What is SSH?   Secure Shell (SSH) is a cryptographic network protocol for secure data communication, remote command-line login, remote command execution, and other secure network services between two networked computers. 

What is Web Server?   Web Server is the storage of your web files.

If you have all of this requirements. you can now develop in LINUX. 
How to open a text file in vim editor?
 Just Locate your folder in your server by using "cd".

just like that. the when your in your folder just type.

This how it looks like. 

That's it! start using it in developing your web.

Thank you blogger! Help me to share it. :)

Follow me for more topic I will share. and visit my facebook page. 
www.facebook.com/AskCompTutor

source : en.wikipedia.org/wiki/Secure_Shell