search
HomeBackend DevelopmentPHP TutorialPHP cooperates with jquery to implement addition and deletion operations_PHP tutorial

Use php in the background and reference jquery in the frontend to implement addition and deletion operations. The code is as follows:

<span  1</span> <span><script type="text/javascript" src="http://keleyi.com/keleyi/pmedia/jquery/jquery-1.10.2.min.js"></script></span> 
<span  2</span> <?<span php 
</span><span  3</span> <span header</span>("Content-type: text/html; charset=utf-8"<span ); 
</span><span  4</span> <span //</span><span mysql_connect 建立连接,mysql_close($link)关闭非永久连接,mysql_pconnect 建立永久连接 
</span><span  5</span> <span //mysql_error返回mysql函数错误信息,mysql_errno返回mysql函数错误号码 
</span><span  6</span> <span //mysql_set_charset 设置用户端字符集,mysql_select_db 选择连接数据库 
</span><span  7</span> <span //mysql_query 执行查询,mysql_num_rows返回查询记录条数 
</span><span  8</span> <span //mysql_affected_rows返回受影响的记录条数,mysql_free_result 释放结果集内存 
</span><span  9</span> <span //mysql_fetch_row 返回列举阵列记录,mysql_fetch_assoc 返回关联阵列记录 
</span><span 10</span> <span //mysql_fetch_array 返回关联阵列或数字阵列记录,mysql_fetch_object 返回物件形式记录 
</span><span 11</span> <span //mysql_fetch_result 取得结果集资料 
</span><span 12</span> <span //%s 字符串,%c 一个ASCII字符,%d 一个整数,%u 一个符号数,%x 一个十六进制数 </span>
<span 13</span> <span mysql_query</span>("set charaset set utf-8"<span ); 
</span><span 14</span> <span $message</span>=@<span $_POST</span>["message"<span ]; 
</span><span 15</span> <span $shanchu</span>=@<span $_POST</span>["shanchu"<span ]; 
</span><span 16</span> <span $top_title</span>="PHP基础练习"<span ; 
</span><span 17</span> <span $con</span>=<span mysql_connect</span>("localhost","root",""<span ); 
</span><span 18</span> <span //</span><span 连接数据库  </span>
<span 19</span> mysql_set_charset('utf-8',<span $con</span><span ); 
</span><span 20</span> <span mysql_select_db</span>("dbl",<span $con</span><span ); 
</span><span 21</span> <span //</span><span 定义数据库命令查询 </span>
<span 22</span> <span $sql</span>="select `message` ,`time`,`id` from message order by id desc limit 0,30"<span ; 
</span><span 23</span> <span //</span><span 执行数据库查询  http://www.cnblogs.com/roucheng/</span>
<span 24</span> <span $rs</span>=<span mysql_query</span>(<span $sql</span>,<span $con</span><span ); 
</span><span 25</span> <span $time</span>=<span date</span>('Y-m-d h:i:s',<span time</span><span ()); 
</span><span 26</span> <span //</span><span 获取条数 </span>
<span 27</span> 
<span 28</span> <span $num_rows</span>=<span mysql_num_rows</span>(<span $rs</span>);<span //</span><span mysql_num_rows返回查询记录条数 </span>
<span 29</span> <span if</span> (<span isset</span>(<span $_POST</span>["submits"<span ])) { 
</span><span 30</span> <span if</span>(!<span $_POST</span>["message"]==<span null</span><span ){ 
</span><span 31</span> <span $queryinsert</span>=<span sprintf</span>("insert into message (message,time) values('%s','%s')", 
<span 32</span> <span $_POST</span>['message'],<span $time</span><span ); 
</span><span 33</span> <span mysql_query</span>(<span $queryinsert</span>,<span $con</span><span ); 
</span><span 34</span> <span } 
</span><span 35</span>     <span if</span>(<span $_POST</span>["message"]==<span null</span><span ){ 
</span><span 36</span> <span echo</span> ""<span ; 
</span><span 37</span> <span } 
</span><span 38</span> <span header</span>("Location:http://localhost/table.php"<span ); 
</span><span 39</span> <span } 
</span><span 40</span> 
<span 41</span> <span if</span>(<span isset</span>(<span $_GET</span>["ClearTd"]) && <span intval</span>(<span $_GET</span>['ClearTd'<span ])){ 
</span><span 42</span> <span $querydelete</span>="delete from message where id=".<span $_GET</span>['ClearTd'<span ]; 
</span><span 43</span>     <span mysql_query</span>(<span $querydelete</span>,<span $con</span><span ); 
</span><span 44</span> <span header</span>("Location:http://localhost/table.php"<span );    
</span><span 45</span> <span } 
</span><span 46</span> ?> 
<span 47</span> 
<span 48</span> <form method="post" action="table.php"> 
<span 49</span> <textarea  name="message" id="message"></textarea> 
<span 50</span> <input type="submit" name="submits"> 
<span 51</span> </form> 
<span 52</span> 
<span 53</span> <ul> 
<span 54</span> <?php <span while</span>(<span $row</span>=<span mysql_fetch_array</span>(<span $rs</span>,<span MYSQL_ASSOC)) 
</span><span 55</span> <span { 
</span><span 56</span> ?> 
<span 57</span> <li> 
<span 58</span> <?php <span foreach</span>(<span $row</span> <span as</span> <span $tiao</span><span ){ 
</span><span 59</span> <span echo</span> <span $tiao</span><span ; 
</span><span 60</span> }?> 
<span 61</span>     <a name="ClearTd" href="?ClearTd=<?php echo <span $row</span>['id'];?>">删除</a> 
<span 62</span> </li>       
<span 63</span> <?php } ?> 
<span 64</span> </ul> 

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/626643.htmlTechArticleThe backend uses php, and the frontend references jquery to implement addition and deletion operations. The code is as follows: script type="text/javascript" src ="http://keleyi.com/keleyi/pmedia/jquery/jquery-1.10.2.min.js"/script ?...
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
PHP Email: Step-by-Step Sending GuidePHP Email: Step-by-Step Sending GuideMay 09, 2025 am 12:14 AM

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

How to Send Email via PHP: Examples & CodeHow to Send Email via PHP: Examples & CodeMay 09, 2025 am 12:13 AM

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

Advanced PHP Email: Custom Headers & FeaturesAdvanced PHP Email: Custom Headers & FeaturesMay 09, 2025 am 12:13 AM

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Guide to Sending Emails with PHP & SMTPGuide to Sending Emails with PHP & SMTPMay 09, 2025 am 12:06 AM

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

What is the best way to send an email using PHP?What is the best way to send an email using PHP?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

Best Practices for Dependency Injection in PHPBest Practices for Dependency Injection in PHPMay 08, 2025 am 12:21 AM

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHP performance tuning tips and tricksPHP performance tuning tips and tricksMay 08, 2025 am 12:20 AM

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

PHP Email Security: Best Practices for Sending EmailsPHP Email Security: Best Practices for Sending EmailsMay 08, 2025 am 12:16 AM

ThebestpracticesforsendingemailssecurelyinPHPinclude:1)UsingsecureconfigurationswithSMTPandSTARTTLSencryption,2)Validatingandsanitizinginputstopreventinjectionattacks,3)EncryptingsensitivedatawithinemailsusingOpenSSL,4)Properlyhandlingemailheaderstoa

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools