How do i import data from database to website? [closed] - php

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have a phpmyadmin database that stores data from a simple form. Now i just have to make a page that shows all the answers nicely. How do i import data from that database to the new page?
Fixed: I learned some simple php and then i was good to go. Sorry for any inconvenience.

you need to write query to fetch data from your database and Display it on another page

Related

connect the Html 5 with mysql [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 days ago.
Improve this question
please any one can guide me how can I connect the database with Html 5 using php file because when I execute the page and insert the data the page appear the code.
Hello, please any one can guide me how can I connect the database with Html 5 using php file because when I execute the page and insert the data the page appear the code

How does Wordpress create slugs? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I am writing a script to import posts from a CSV file, but I need to generate a slug from the data source in order to query Wordpress to see if the post already exists, how does Wordpress generate the slugs? I will need to generate the slugs in the exact same way in order to correctly query the Wordpress database.
I found the answer, you can use the function sanitize_title().

PHP - Post data to a database on visit of a URL? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am fairly new at PHP.
Is it possible to post data to a database on visit of a URL?
I want the user to scan a QR code that open up a link that just echo a message. But in the back end the date and time is recorded to a database. How would I do that?
Thanks again
Yes, it is very possible...
yourscript.php
<?php
$somedata=isset($_GET['somedata'])?$_GET['somedata']:null;
$conn=getYourDBConnction();
$sql='INSERT INTO yourTable(datatime,somedata) VALUES(NOW(),?);
$stmt=$conn->prepare($sql);
$stmt->execute(array($somedata));
echo('response');

How to monitor oracle DB updates? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to notify website visitors about oracle table updates in current time. How to do this?
Let the database do its work (i.e. hold and manage the data) and have the notification done by the application, that handles the incoming call.

PHP ajax chat without database at backend [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Does anyone know where messages accesses without using database on php-ajax chat?
example can be found on
www.phpfreechat.net/
In files:
By default, you don't need a Mysql
database. The chat uses files to store
messages and nicknames.
Source: http://www.phpfreechat.net/required-config

Categories