Posts

Showing posts from May, 2020

Beware of PUBG Scammers.......Stay alert....!!!

Objective of this blog: Stay alert from public Scammers..!!            REMEMBER NOTHING WORTH THAT COMES EASY. What attracts us?  To become popularity over-night in PUBG , we are forgetting our efforts and time. Think what values us. Searching and believing website that says us to do this and those and get FREE redeem code or anything is like fairy but also a scary. My life experience: I installed pubg recently, I played hard to have a chicken dinner.My perseverance and my target towards the game to achieve doesn't let my to stay out of it.In addition to that PUBG recommends me to take rest after 2h notification, but  I never give it a try. As I am new for PUBG,I could not have trending dress. The dress rate on the pubg makes me to think ," are they kidding me?" I could buy a good dress in our reality with that same cost. When I saw people with falcon,"is that interesting?" When I open up my you-tube ,it suggest me to have an advertiseme...

Dynamic Chart Using PHP-Xampp Mysqli database and visualizing line chart.

Image
Objective of this blog: To build a simple line graph using the values fetched from MYSQL-Xampp database table. Why I created ? As I need chart to visualize the percentage of marks obtained by the student.I searched over the internet for dynamic code but I could not get it.So I modified the code from  https://developers.google.com/chart/interactive/docs/gallery/linechart   from its static code into dynamic by the follow I have created a database named as chart with table name as analysis with 6 columns as name (varchar 30) ,a1 (int ) ,a2 (int ) ,a3 (int ) ,a4 (int ) ,a4 (int ) ,a5  (int ) Caption:Database 1) Develop a php program as linep.php <?php $con=mysqli_connect("localhost","root","","chart"); //connection if($con) {  $query = "SELECT * from analysis"; //select the records from table  $result = mysqli_query($con,$query); //initializing variables  $a1=0;  $a2=0;  $a3=0;  $a4=0;  $a5=0;  $count1=0; //counting the number of ...

Start your PHP project now :100% code works fine and good! Try now!

Image
Objectives of this blog: To easily create your own simple application by understanding CRUD Operations in PHP using XAMPP-MYSQL database login system. What is CRUD? CRUD is an acronym for  C reate,  R ead,  U pdate, and  D elete. CRUD operations are basic data manipulation for database. Basic Idea to Implement an application: Every applications should have  a problem statement. It includes why the project is made to implement? Where and how it will be benefitable ? To whom it is useful. Who are the people involved in this application. What is the requirement for implementing this project.Is this project really meets a demand ?List of modules that makes project to demonstrate on its usage and also requirements of hardware and software systems are noted. Create Software Requirement Specification (SRS). Develop atleast an usecase diagram to find actors and modules involved in the system. Code...