inputing details from form to database doesn't work [duplicate] - php

This question already has answers here:
PHP code is not being executed, but the code shows in the browser source code
(35 answers)
Closed 8 days ago.
i want to input the data from form to database i'm using xampp

If your xampp Apache server and MySQL server are turned on, you should be accessing the web pages with "localhost/proj/" not with the file directory.

Related

Get information about php [duplicate]

This question already has answers here:
Where does phpinfo() get its info?
(5 answers)
Closed 2 years ago.
I just started with programing in PHP
And i have a problem:
I'm just experimenting and discovering the language. I tried compressing a string and display the output. I get an some zlib error. I am just wondering if there is a function that returns information about extensions?
You should use
phpinfo();
to display the PHP configuration.

How can I download php file with source? [duplicate]

This question already has answers here:
Is it possible to download PHP script from a web page with wget?
(4 answers)
Possible to view PHP code of a website?
(3 answers)
Download PHP script instead of executing it
(5 answers)
Copy PHP file from other URL without executing the code
(1 answer)
Closed 3 years ago.
This is my demo url
http://www.example.com/example.php
If we want to download example.php file with source code how can we do it?Is it possible?
Simple answer, no. You cant download PHP Source Code without access to the host.

We want to copy and paste all tables from one database to another database using php [duplicate]

This question already has answers here:
Export MySQL database using PHP [closed]
(10 answers)
Closed 6 years ago.
We have two databases. First one connected in local machine and another one connected in global server. Now i want to copy and paste all tables from local server to global server. How can i copy and paste tables using php code.
Try examples from:
Export MySQL database using PHP only

Can we make EXE equivalent for PHP code so that the code can be protected? [duplicate]

This question already has answers here:
Best solution to protect PHP code without encryption
(11 answers)
Can you "compile" PHP code and upload a binary-ish file, which will just be run by the byte code interpreter?
(14 answers)
Closed 9 years ago.
Not sure if this has been discussed before.
I was looking for a solution that can protect the PHP code.
So even if I put the code on my client's server if they decide to put another developer on it or try to resell my code they should not be able to do so.
Is that even remotely possible?
The .exe versions of desktop application thingy is something I am looking for, but for PHP.
There are options to "compile" code like phpcompiler also read another thread about this on stackoverflow

How can I test what is slowing down my php code? [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
php-cgi running very slowly on windows
I'm running wordpress on a windows server, and for some reason the php code is executing very slowly. How would I be able to trace exactly the part of the code that is slowing the server down?
Try to start with xdebug php extension. It could give you a lot of information.

Categories