Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 9 years ago.
Improve this question
Is there way to create database in one file?
I have a PHP script, is there possible to use PHP
syntax (as Apache) to read correct data from one
single database file?
Something like: http://www.sqlite.org/about.html But this requires more than 1 file.
You can use just simple Comma Separated Vlaues (CSV) file.
PHP has several standart function to work with CSV-files data:
fgetcsv;
fputcsv.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 3 years ago.
Improve this question
$b=number_format($number[12],2);
$sql01=mysql_query("UPDATE t_maindbfordashboard SET valueVar=".$a." WHERE managementName=dds");
I am absolutely sure that there are no problems connecting to the database or such. This query works when I try "SELECT * FROM tableName". Where do you think I'm making a mistake?
Ask if you need more help, and side note be careful with the sql, yours can be injected.
$b=number_format($number[12],2);
$sql01= $MysqliHandler->prepare('UPDATE t_maindbfordashboard SET valueVar=? WHERE managementName="dds"');
$sql01->bind_param('s', $b); //you typed $a here but where is that value from? guess its $b?
$sql01->execute();
$sql01->close();
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 8 years ago.
Improve this question
Is it possible to convert a .au audio file to mp3 file using PHP ?
How can I do this ?
Thank you
Using ffmpeg can be helpful. For details http://ffmpeg.org/
from: How to convert all audio formats to mp3 in php?
Please, use google search first.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 8 years ago.
Improve this question
I am learning PHP. Currently, I have:
<?php
echo "<p>This text was brought to you by PHP.</p>";
?>
What this does is outputs "This text was brought to you by PHP." and then on the next line: "; ?>
I cant figure out what i'm doing wrong, the code is seemingly correct.
PS. I made sure its a php file.
You cannot run a php file off the filesystem (file://) you need to install a web server with php enabled and then the server side code will run.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 9 years ago.
Improve this question
I'm a PHP newbie trying to debug someone's code. The very first line of the code has what I think is a constant as shown below:
<?php
set_time_limit (0);
require_once (SITE_PATH. '/server/php/libs/dbase/handler.php');
I have written a debug statement and I have gotten a null.
echo "SITE_PATH"
How should PHP constants be declared. Should'nt the require statement be $SITE_PATH instead of SITE_PATH?
php constants must be defined as :
define('SITE_PATH','http://localhost/site');
and are used as :
echo SITE_PATH;
Look at this : php constants
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 9 years ago.
Improve this question
I have coded a web directory that uses GET to generate all pages of information from a database. Is it possible for these pages to be indexed individually by a search engine?
Yes. If you can link directly to it, then a search engine can index it (unless you take other steps to explicitly exclude them).