Showing posts with label make. Show all posts
Showing posts with label make. Show all posts

25 April 2017

The 7 key steps to launch an application

The 7 key steps to launch an application

Launch an application requires a business plan. Here's how to build.

Marketing agency California Bixa Media published a graphic Recalling the steps from the idea of an application as a real presence on an app store.


make,your,first,application,business,in,google,play
keys and steps to lunch an applications

"When the Apple App Store was launched in July 2008, there were 800 applications. Today, there are more than 1 million applications in the Google Play Store, and 1.2 million in the App Store"reminds the Agency in the introduction. And the market has since strongly professionalized. To succeed, the agency records 7 inevitable points in your application project, which is similar to a business plan:

First step: develop his idea


Make sure that your idea is unique and has not already been taken elsewhere.
She must answer or a solution to a problem, or, as appropriate, entertain;
To approve your idea and your project by a specialist.

Second step: develop a monetization plan


Developers earn on average $ 4,000 income by application on the App Store against 1 125 dollars on the Google Store;
Choose a form of monetization among the different existing solutions: invoice each download, free download, then payments in the application...

Third step: developing a marketing plan


Promote the buzz social network to publicize your app.
Develop a Web site showcase to highlight it;
Create a blog around your application to create the news around it.

Step 4: build his team


Think of a developer, a designer, a marketer...
Register to have a "Developer" account at Apple (99 dollars a year) or Google ($ 25 registration)

Fifth step: sketch what will look like your application


What will the Visual on the screen look like?
What type of ownership?
What sizes and shapes will have different elements (buttons, icons...)?

Step 6: test the application


Objective: avoid to be refused on the app store.

Seventh step: start - your application

Watch the number of downloads, reviews...
Already start working on the following versions and updates.

06 December 2016

3 steps to build and create your own website - Learn how!

Everyone wants to make and build a professional website with his own, for business, Marketing, Personal or any ideas he wants to share it, But the majority they don't knowing anything about steps and fear of work and coding because it's very hard and only programers can do that, And that certainly wrong!

create,a,simple,website
How to create your own website
 

So today I gonna show you how to create a good website in days depends about your Ideas.

What are the objectives and what you will learn from that lesson :

  • know how to learn HTML and CSS in few days.
  •  build your webpages ( Like home,about us, contact us ...)' by  coding, or by using a software.
  • What's a statistical and dynamic web site means?
  • Save your money, No need to buy ready websites again!
  • What does it mean a Hosting and Domain name, and how I can get the both

Steps : How to make an own website!

 
wikihard how to make a website
HTML & CSS


1. LEARN HTML/CSS : All websites made by HTML and CSS because they are necessary to show the body and the Contents, HTML it's a very easy markup language, You can learn at W3SCHOOL or CODECADEMY, Also you can make webpages without learn HTML by using softwares like : DreamWeaver, FrontPage... using sofwares is easy and very quickly, just try to see some tutorials in Youtube!


 
wikihard making a site with php
PHP - Web programing language


2. LEARN PHP BASICS : if you want to make just webpages has contents and informations about you or your work with HTML extension you don't need to learn basic of PHP, cuz HTML itself is enough, And your website called " Static " because there is no programming language in it!, Further if you want to make a customise your webpages like adding actions, You need to use a web programing language Like PHP and Pyton. There are a lot of PHP course in W3SCHOOL and CODECADEMY you can see it.



easy learn with php
Hosting and domaine name


3. GET A HOSTING + DOMAINE NAME : when you have finish your website, all you need is to buy a premium hosting and domain name to upload the website files in, and start sharing your webpages in Google. You can buy it from Godaddy.com or Name.com, they are the best!, Also you can get a free hosting with a free domaine name, they are a lot of companies just search in google then register.



 

06 March 2016

How to create comments system using PHP and MYSQL

Hello Programmers this is my first lesson in PHP and it talk about how to make and create system comments to your website or any websites you want. All forums use this system and the most of websites.

how,to,create,comments,system,make,comment,php,mysql,database,table,website,forum,blog,wordpress,programmer,lesson
create comment system by using PHP and Mysql @wikihard



I wish you take advantage of the lesson and learn more about PHP programming.

Notice : All big websites use COMMENTS SYSTEM like Facebook, Twiter and google plus.

Facebook Example :

how,to,create,comments,system,make,comment,php,mysql,database,table,website,forum,blog,wordpress,programmer,lesson
Simple System comments of the Facebook @wikihard

Google+ plus Example :

how,to,create,comments,system,make,comment,php,mysql,database,table,website,forum,blog,wordpress,programmer,lesson
Google plus comment @wikihard

Google and Facebook are using Javascript, but in this topic I will show you how to create a simple system commenst by using PHP & MYSQL only, I need you to learn the basic, then you can improve it yourself!

firstly you must to create a php file called connect.php and put the script bellow in, This file will help us to manipulate between the website and database without any problem.

  Connect.php File :


<?php

$user='username';

$user='username'; 
$pass='password'; //@wikihard copywrite

$host='localhost'; // if you have a web hosting change this infos


$database='public';

mysql_connect("$host", "$user", "$pass")or die("cannot connect");

mysql_select_db("$database")or die("cannot select DB");


?>

Read more :  3 ways to learn PHP on your own
Read more :  9 tips to become better in programming 

When you finish connect.php file, we will start to create new important file called index.php, we will use this page to display our comments and to add more comments too.


<?php

require_once('connect.php');
$message ='';
if(isset($_POST['submit']))
{
if(!empty($_POST['comment']) && !empty($_POST['name']))
{

//created by @wikihard
$comment= $_POST['comment'];
$name= $_POST['name'];
$query = "INSERT INTO `comment` VALUES(NULL,'$name','$comment')";
$qresult = mysql_query($query);
$message="Thank you for comment!";

} else
{
$message="please don't let area empty!";
}

}

$sql = "SELECT * FROM `comment`";
$qsql = mysql_query($sql);




?>
<!DOCTYPE html>
<body>
<?php
while ($row = mysql_fetch_array($qsql))
{
echo "<b>".$row['name']."</b> : </br>";
echo " ".$row['comment'].". </br></br>";
?>
<form method="post" action="index.php">
<input type="text" name="name" placeholder="put your name"></br></br>
<textarea rows="5" cols="25" name="comment" placeholder="write your comment here"></textarea></br></br>
<input type="submit" name="submit" value="post comment">
</form>
<?php echo $message;?>
</body>
</html>


 How it work :


      - First we must call the connect.php file to connect with the database!

      - When we add value and press the button "Add comment", the comment will send and save in the comments table(id,name,comment) in the database.

      - if the fields are empty, will NOT WORK and this message will show for the user "please don't let area empty " Until he put values before submitting.

      - Now we need to display all comments from the database (comments table) to the home page ( index.php ).

      Any question please let a comment! Good luck