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
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 days ago.
Improve this question
when I sumbit data from the web site to check if it works properly web site shows that data entered sucussefully to the data abse. this is how it shows But on data base it only shows number 1
I need a solution to make this work
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
How i show data postet in another website to mysql database, in real time on main page of website using PHP and that any new data is displayed in a new line.
Datas that i need show are: name, and finish time (from race).
Use .setTimeout() JS method on main page of website and do jQuery.ajax() requests to your server to update data.
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');
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
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