Home > Article > Backend Development > Program for transferring values to each other in PHP+js+html+mysql_PHP tutorial
This article introduces how PHP & HTML & JavaScript & MySQL codes transfer values to each other. Friends who need to learn can refer to
1.PHP
a.PHP -> HTML & JavaScript
Um, it’s super simple, I want to write it too = =~
In html code
代码如下 | 复制代码 |
/> |
In JavaScript code
代码如下 | 复制代码 |
b.PHP <-> MySQL
The code is as follows | Copy code | ||||||||||||||||||||
$dbcnx = @mysql_connect ( "localhost", "root", "1234" ); if (! $dbcnx) { echo ("Unable to connect to the " . "database server at this time.");exit (); }
if (! @mysql_select_db ( "pms" )) { echo ("Unable to locate the joke " . "database at this time.");
b. HTML -> JavaScript
Statement: The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn Previous article:Basic methods of exception handling in php_PHP tutorialNext article:Basic methods of exception handling in php_PHP tutorial Related articlesSee more |