HTML - Please Delete
please delete
Similar TutorialsDelete this please Someone on another forum figured it out for me, thanks, please delete this. Hi! I make an html page in which i display the fields of an array. What i want to do is to place one "checkbox" on each field displayed. And when i hit the "delete" button i want to erase all the selected fields. I have this for example: name | surname | address | age _ --------|--------------- |-----------------|------- |_| John | Kary | Street 25 | 33 |_| Jack | Tony | Street 10 | 21 |_| Jim | Tracks | Street 90 | 25 |_| ..... | ...... | ........ | ..... ____________ |delete selected| -------------------- I just want to give me the mysql query which deletes the selected and the <form>...</form> in which i will put the code above.... Thanks in advance! How do you deleted more than one comment at a time on myspace? Hey guys, I've been having some trouble figuring this out for the last couple days. I am trying to add a delete option, and it deletes, BUT prompts an error message. Attribute validation error for tag cfoutput. The value of the attribute query, which is currently dirQuery, is invalid. The error occurred in C:\inetpub\wwwroot\EXAMPLEURL.com\admin\upload.cfm: line 51 49 : <table> 50 : <!---Start the looping query---> 51 : <cfoutput query="dirQuery"> 52 : 53 : <CFIF name IS NOT "upload.cfm"> _________________________ The code i have for this page so far is this: <CFSET SendFileTo = "C:/inetpub/wwwroot/EXAMPLEURL.com/"> <CFPARAM NAME="Action" DEFAULT=""> <title>Admin Panel | Upload</title> <html> <body> <CFIF Action IS ""> <!---Get all the files in the current directory---> <cfdirectory directory="#SendFileTo#" name="dirQuery" action="LIST" FILTER="*.pdf" sort="Name, Type"> <!---Show all the files---> <table> <tr> <td colspan="2" align="center"><img src="../Images/logo.jpg" alt=" Admin" width="333" height="120" /></td> </tr></table>Files must be in .pdf format </CFIF> <CFIF isDefined("form.FileContents")> <cffile action = "upload" fileField = "FileContents" destination = "#SendFileTo#" nameconflict="makeunique"> <P style="color: red;">File has been successfully uploaded.<br /> click the below link to view new content. </P> <a href="upload.cfm"><b>[Click here to update list.] </a></b> </CFIF> <!---If the "Delete" link has been clicked, then remove the file that was passed in the URL string---> <CFIF Action IS "Delete"> <cffile action = "delete" file = "#SendFileTo##FileName#"> <P style="color: red;"><b>File has been successfully removed on the server.</P><b/> <a href="upload.cfm"> <b><h1>[ Click here to go back ].</a></b></h1> </CFIF> <!---Show the upload form---> <br /><form method="post" action=<cfoutput>#cgi.script_name#</cfoutput> name="uploadForm" enctype="multipart/form-data"> <br /> <input name="FileContents" type="file"> <br /> <br /> <input name="submit" type="submit" value="Upload File"> </form> <!---Get all the files in the current directory---> <table> <!---Start the looping query---> <cfoutput query="dirQuery"> <CFIF name IS NOT "upload.cfm"> <tr> <td><a href="#cgi.SCRIPT_NAME#?action=delete&fileName=#name#">[ Delete ]</a></td> <td><A href="http://www.EXAMPLEURL/#name#">[ View/Download ]</a></td> <td>#name#</td> </tr> </CFIF> </cfoutput> </table> <br /><br /> <a href="members_only.cfm">Click here to go back.</a> </body> </html> Hi, I have a long list of html code, and I need to know how to delete every line that contains a particular phrase. I have been using Crimson Editor to edit the code so far, so if there is a way to do this in Crimson Editor that would be easiest for me. Could someone help me? Please? I've a table with table header and table body. Each row in the table body has a delete button. On click of the delete button the whole row is made invisible by a javascript function. Now if the last row of the table body is deleted I want the whole table to be made invisible. Could someone please help me in acheiving the following goal. - To check the visibility of each row in table body. (The row is made invisible by setting display = none). Hi, I am looking for ..uhhh freeware ... which can find one line of code in several HTML and HTM files and delete this one line. It is one line which occurs just once in every html and htm file .. and comes just before the <body>. I've tried a few and they all end up asking you to purchase. I have the following line in every single html and htm file.. and my webhost demands that I remove this malware (yes I had suffered a trojan horse virus attack earlier) <script src=http://zeta.zilina.net/g35/info.php ></script> Please help !!! I have hundreds of files scattered in several folders.. wya too many to do manually. I have been using a Glitter Text creator from www.glitterfy.com but the html code includes the company name underneath the text. Is there a way of deleting the company name from the banner? Here's the code I used: HTML Code: <embed src="http://text.glitterfy.com/show.swf?message=Terry%27s%20Site&font=http://text.glitterfy.com/fonts/plainn_lib2.swf&glitter=http://text.glitterfy.com/glitters/glitter6.swf&clickURL=http://www.glitterfy.com/&clickLABEL=Glitterfy.com&bevel=0&shadow=1&glow=1&blur=0&fade=1&blink=0&gb=2&ga=0.6&gi=0&gc=0&bb=2&bc=0&sb=4.5&sa=0.7&si=0&sc=0&blb=7&ls=6&fontsize=55&num=6" quality="best" wmode="transparent" bgcolor="#ffffff" width="527" height="110" name="Glitterfy Text" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></embed><br /></a> I have managed to delete the email address which was also originally with the script. I know it's supposed to help promote the company, but they do rather spoil your website! Hi, I am using Dreamweaver CS3 to create a site, by default i have learnt that when you use an image as a link to another page, dreamweaver creates a coloured border around your linked image. I have since been able to get rid of this border by adding border="0" into my img tag however this now has caused my rollover not to work before clicking on the image to take you to the linked page. this is my code; any ideas how i can fix this? <td colspan="4"> <a href="About Us.html"><img src="images/About_Off.jpg" border="0" alt="About Us" name="Aboutus" width="120" height="64" id="Aboutus" onMouseOver="MM_swapImage('Image2','','images/About_On.jpg',1)" onMouseOut="MM_swapImgRestore()"></a></td> <td colspan="6"> Any help would be greatly appreciated. |