Bulletin.Com.Ng - Online Bulletin For Periodicals (newspapers magazines and journals)
  • Home
  • About Us
  • Our Services
    • Web Services
    • Music Promotion
  • Contact Us
  • Disclaimer
  • Privacy Policy
» Network » php Tutorial » Php Mysql blog tutorial, creating a simple and secured blog

Php Mysql blog tutorial, creating a simple and secured blog

Kedeayei
Add Comment
Network, php Tutorial
Monday, 28 August 2017
php mysql blog

On today's tutorial we will talk about creating a blog on php and mysql

Table of contest:
1. Connecting to mysql database
2. Creating mysql tables
3. Coding the blog

              Download 

Connecting to mysql database is simple, in just few lines of code

Before we start i suggest you read Php Mysql posting to database for better understanding of mysql.

// connecting to host
mysql_connect("host", "user", "password"); // replace this with your data
mysql_select_db("your_database"); // database name here
?>


Creating database, tables and columns 
Now let's build the mysql table.
First build a database if you haven't, and dont forget to edit the connection details at the top.
Click on databases
php mysql blog
Set a name to it and click create.
Now we must build the tables:
mysql create tables
Click 'go', a new table will popup, complete those fields like in the pocture below:
Scroll down and click save.
Last one, click on posts and insert tab at top, write something to title, and id live empty.

Now lets continue coding the blog

// connecting to host
mysql_connect("host", "user", "password"); // replace this with your data
mysql_select_db("your_database"); // database name here

// lets build a blog
if(isset($_GET['post'])){
$post = $_GET['post'];

// first of all we will check string length
if(strlen($post) > 11){ // if post id is bigger than 11 charachters
die('Blog post nof found.');
}
// now we will make sure that the post id is numeric and this is a nice security method
if(is_numeric($post)){ // is numeric allows numbers only
$post = (int)$post; // and the int function, which replace every
// string to its correspoing number

// for the tutorial im gonna add mysql_real_escape_string
// but is not really needed in this case
$post = mysql_real_escape_string($post); // final sqli defense

// final part
$query = mysql_query("SELECT title FROM posts WHERE id=$post LIMIT 1");
while($row = mysql_fetch_array($query)){
echo $row['title'];
}

}
else{ // if post is not numeric then
die('Blog post nof found.'); // post does not exist
}

}
else{
// if post is not submitted display them all
$query = mysql_query("SELECT title, id FROM posts");
while($row = mysql_fetch_array($query)){
echo $row['title'];
echo $row['id'];
echo ''.$title.'
';
}
}
?>
Few last tips!

I used LIMIT 1 on the first mysql query.
That's done for 2 main pruposes:
1. we are only displaying 1 result
2. it's a nice speed optinization for mysql
To display blog posts by newest ones replace


SELECT title, id FROM posts
with 
SELECT title, id FROM posts ORDER BY id DESC
It's a simple blog who does the work.
If you want to learn more about sql injection we suggest Sql Injection prevention tutorial


We appreciate you for reading our post, but we think it will be better you like our facebook fanpage and also follow us on twitter below.
Follow @Superbaze_Ent
Are you an artiste? Do you want your music to go viral and reach a large number of audience? Promote your music on FLEXYHUBS by clicking here. You can also advertise your product or brand by clicking here.
Tweet
Php Mysql blog tutorial, creating a simple and secured blog Title : Php Mysql blog tutorial, creating a simple and secured blog
Description : On today's  tutorial  we will talk about creating a blog on php and mysql Table of contest: 1. Connecting to mysql database 2. Creating ...
Rating : 5
Related Posts: Network, php Tutorial

0 Response to "Php Mysql blog tutorial, creating a simple and secured blog"

← Newer Post Older Post ⇒ Home
View mobile version
Subscribe to: Post Comments (Atom)
Powered by Blogger.

MKRdezign

Archive

Technology

Breaking News

Populars

  • “I was referring to Duck head” — Dammy Krane comes for Tekno
    “I was referring to Duck head” — Dammy Krane comes for Tekno
    Dammy Krane has made it clear that he was referring to Tekno in His recent call out. Recall the drama between Dammy and Orezi started when ...
  • How to connect Your Payoneer account to a marketplace, network or Website
    How to connect Your Payoneer account to a marketplace, network or Website
    Are you a freelancer working on  Upwork  or  Fiverr ? Or perhaps you are selling on  Lazada  or  Wish ? Payoneer has partnered with leading ...
  • REVEALED: How Monkey Pox Started In Bayelsa Community.
    Residents of Agbura community in Ogbia Local Government Area where the suspected Monkey Pox epidemic started were not bothered about the ...
  • How to earn up to 10k with wema bank affliate program
    How to earn up to 10k with wema bank affliate program
    Love to make  #10 , 000 just referring friends. Got you good news. Introducing Alat.ng powered by Wema Bank. Nigeria's first truly digit...
  • CONGRATS! Actress Regina Daniels turns a year older
    Teenage Actress, Regina Daniels, has “finally” turned 17. The actress who just keep calm, has been counting down to this day, and it’s final...
  • Tecno Spark Plus (Tecno K9) Full Phone Specifications And Features
    Tecno Spark Plus (Tecno K9) Full Phone Specifications And Features
    Tecno Spark plus, which is also called  Tecno K9 , is an upgraded version of  Tecno K7 . Though, both smartphones are in the same  Tecno spa...
  • Zambian Fans wants FIFA to order a replay of Nigeria vs Zambia match
    Some disgruntled fans of the Chipolopolo of Zambia have called on the Fédération Internationale de Football Association (FIFA) to order a ...
  • “I started growing breasts at age 7” — Busty Nigerian Lady shares Throwback Photo
    A Beautiful young Nigerian Facebook user, identified as Gloria E Okhani,has opened up about how she used to be extremely insecure about h...
  • Nollwood Actress, Oge Okoye Celebrates 37th Birthday Dinner With Friends
    Nollwood Actress, Oge Okoye Celebrates 37th Birthday Dinner With Friends
    She as been in movie industry for so long that I can’t even remember, she is a goddess and she is a lovely Easterner, she is also a Glo amba...
  •  Phyno Ft. Olamide – Augment Video: Phyno Ft. Olamide – Augment
    Phyno Ft. Olamide – Augment Video: Phyno Ft. Olamide – Augment
    Video: Phyno Ft. Olamide – Augment Barely 3 days after the official release of the audio version, Penthauze does some magic. Watch the...
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy

Labels

  • Admission
  • Education
  • Entertainment Gist
  • Games
  • Gistnaija promo
  • Interviews
  • jquery tutorials
  • Music
  • Network
  • NEWS
  • php Tutorial
  • Python
  • Sports

  • Home
  • Home

Category

  • Admission
  • Education
  • Entertainment Gist
  • Games
  • Gistnaija promo
  • Interviews
  • jquery tutorials
  • Music
  • Network
  • NEWS
  • php Tutorial
  • Python
  • Sports

Facebook

Labels

  • Admission
  • Education
  • Entertainment Gist
  • Games
  • Gistnaija promo
  • Interviews
  • jquery tutorials
  • Music
  • Network
  • NEWS
  • php Tutorial
  • Python
  • Sports

Report Abuse

Top Featured

Search This Blog

Like on Facebook

Random Posts

Flickr

Social Share

Featured Posts

Recent Posts

Recent in Sports

Recent comments

Contact Form

Name

Email *

Message *

Label

Admission Education Entertainment Gist Games Gistnaija promo Interviews jquery tutorials Music Network NEWS php Tutorial Python Sports

Events

Videos

PLACE YOUR ADS HERE

Home of Aproko Entertainment

Contributors

  • Kedeayei
  • Teygah

Advertising

Pages

  • Home

Trending Posts

  • HOW MUCH DO FREELANCE WEB DESIGNERS CHARGE IN 2017?
    Expert Market finds out how much freelance web designers charge for their services and how to get a good deal for your business. Freelance W...
  • How to Find Your Lost or Stolen Android Phone.
    How to Find Your Lost or Stolen Android Phone You’re having a night out. With dinner down the hatch, you’re walking down the street with you...
  • Recharge Now Easier with MTNOnDemand Feature
    With just a  simple USSD code , you can now recharge your line from your bank without leaving the comfort of your home. It's necessary y...
  • Fair Usage Policy: Why Airtel Unlimited Data Plans Have 3 Different Prices
    Airtel recently launched her  unlimited data plan , but it left people asking a lot of questions due to incomplete informations about the pl...
  • Android 8.0 Oreo Operating System Now Official, Starts Rollout to Devices
    Android 8.0 now got its full name and has starts rolling out to devices. It's  Android 8.0 Oreo  and was launched to celebrate the  ecli...
  • Wayne Rooney retires from International Football
    Photo Credit: Instagram- @waynerooney Manchester United  and  England ‘s all-time leading scorer  Wayne Rooney  has announced his retirement...
  • Tecno WX4 / WX4 PRO Features, Specifications And Price
    Here is another amazing smartphone from Chinese OEM, Tecno. Added to it's W series, the phone accompanies decent specifications and feat...
  • Google Compensates Uruguayan Student With $10,000 For Revealing Security Bug
    In a bid to compensate security researchers for disclosing existing flaws and to also safeguard their system, giant tech companies like Goog...
  • HOW TO MAKE MONEY WITH COOBIS.COM: EARN €50 - €3000 BY PUBLISHING ARTICLES ON YOUR BLOG AND WEBSITES AND ALSO POSTING ON SOCIAL MEDIAS LIKE FACEBOOK, TWITTER AND MANY MORE
    Every moment is growing the market of companies that are dedicated to build a network of merchants interested in spreading their products, b...
  • Yakurr Unity Carnival (first edition) present Mr. & Miss Yakurr Carnival King and Queen
    This is to Inform the general public and th Yakurr Sons and Daughters that their first ever unity Canival begins this December and runs to J...

Games

Blogs We Read

Labels

Entertainment Gist Network Education NEWS Sports Music php Tutorial jquery tutorials Interviews Python Admission Games Gistnaija promo
Copyright 2016 FLEXYHUBS INC - All Rights Reserved