HTML - How To Protect Typing & Running Script In Textbox?
<?php
for ( $counter = 0; $counter <= 10; $counter += 1) { echo "Hello World<br>"; } ?> Similar TutorialsHello, First off, I'd like you to forgive any and all misconceptions I may have/make in this, as I know as little as possible about html for me to actually post this. Currently I have open the source of a website, (let's call it Site), and in this code I have narrowed down the script (function?) that is called when you click on a button (Button). Is it possible for me to somehow use the source code to call this function/script, simulating the button being pressed? I plan to make a "simple" program to move through Site as a project/practice and this is the point I'm starting at. Gotta start somewhere. Thanks, paradigm hi im designing a we site by php i have a html form that collect some information from client an it has some script for hide or visible text box when user check a checkbox but when client run my page see a popup menu allowed blocked content.... i saw some site do this withou running this popup how can i do it? thanks Hi, im in the middle of creating my website and need some help with stopping people from going to a page in my website manually. Basically, i've set up a contact form and once it's filled in, it sends you to a thankyou page. I want to stop people going to that page manually by typing in the url for it. I want them to only be able to access it by filling out the form and hitting 'send'. Firstly, is this possible, and if so, HOW?! Thanks in advance!! Hello everybody, How can I make html textfield so that while I'm typing a word it will show me all words that the typing word starts with. I don't know how to call this thing. Maybe there is some examples somewhere. i have a website so i want to know how to protect it . I am sorry, I don't think this is the correct topic, but I have no idea where to put it. Can someone please tell me how to generate this kind of password prompt? Everyone will have the same login/password, I will probably change it once a year, so there is no need for a form. I need to know how to create it, it's probably the most boring prompt, but its for a group of guys who don't care. I just need to tell them, this is where you go, enter this and it gives you the information. The entire site is html, so there is nothing they will change or add. Thank you, ~eDee How do I password protect a subfolder on an apache server for example: C:\Users\Kasutaja\Desktop\my_webpage\text I have tried many tutorials but they don't make sense... Does anyone know the easiest way to password protect a website? I dont want to password protect just one page but the entire site WITHOUT the person having to enter a password every time they do to a new page. Im not sure how to do this and can only find information for protecting individual pages. Thanks in advance! Im using basic html for my site (its a personal family site) -Monique Hi I am not sure where to post this so i am sorry if its in the wrong place , my question is i want to prtoect parts of a website i have made from being access unless the come thru the correct reffer pages first say i have 4 pages i want to protect www.mydomain.com/page1 www.mydomain.com/page2 www.mydomain.com/page3 www.mydomain.com/page4 but i only want them to be access if they com from certain parts of my site where i have linked to them .... etc.... But i dont want to password protect them i just want them to accessed thru the correct pages , I have heard that i can do this using .htaccess but i am not sure how if anyone could help that would be great I have created a website for my Dungeons & Dragons gaming group and part of the website has a section where they can download various documents that I have created over the years for the group. Is there any simple and easy (and free!) way that I can require them to put in a password in order to download these files? I am not looking for any fancy encryptions or something that would stump a hacker, but just something that would stump your casual viewer who is not a member of my D&D group. Any and all help is greatly appreciated. Thanks! Take care and have a great day.... ciao, john. Sorry do not know which forum to post this. I would like to post videos on my site but behind my user authentication. It would be nice to use the YouTube service since it optimizes automatically but I do not want the videos public. I already have some public ones on my YouTube channel. Is there an alternative method I can post videos on my authenticated pages that cannot be access with a direct link? 123 Spam Protector is a software to protect your web pages and prevent others from viewing and reusing your web page source code, including HTML source code, JavaScript, VBScript, text, links and graphics. is it possible to configure my htaccess and htpsswd file to require authentication if you want to write to a .txt file using php, but let anyone simply read the data off of a dynamically linked swf? i have a flash site, and the text is dynamically loaded in with external .txt files, and i have some .php files where you can go to update the site that pulls the info off the .txt's to display in a form, then you can edit and submit the changes to be written to the file. thanks for the help! hi, im 13, im new to html, and im making a business site. anyway, i have the latest version of Adobe GoLive (if that helps) but i'd much prefer to use plain html code. i need a page that asks for a password and if its correct takes me to a page with stuff on it. can i have a little code plz? =) thanks Please somebody tell me that what is the command in HTML to protect a page ? Hi all This has probably been covered before but I cant find the answer when searching these forums. I take a great deal of time designing my ebay auctions for the classics cars I sell but want to protect them from being copied which has happened in the past. I know its probably not possible but I do recall a site that encrypted the html code. I appreciated that the advanced users out there would probably get past anything but its the one's who simply copy and paste onto frontpage that I want to protect from. Any help would be much appreciated Cheers Al Hi, I am very new the Html, just i had created a static page containt a hyper link to open a pdf file. File open in browser itself. The list of activity want to protect from the user. 1. Saving the pdf 2. printing the pdf 3. copy/edit a pdf Please help me how to do it. kanish I know how it is to work hard on images and lose them in one shot to scammers. One time I worked hard on a banner and made a thread asking for members to rate it. A guy came along, stole it, edited it and went to another pop forum and told everybody it was his So I worked on some image protection scripts. Enjoy. Disable PrtSc Req Sys Print screen is a button on your keyboard that can take a picture of the screen and send it to your clipboard. My script will manipulate other's Print screen key until they leave the page. Besides, how many people actually use that button? Put this in your <head> tags. HTML Code: <SCRIPT LANGUAGE="JavaScript"><!-- function do_err(){return true}onerror=do_err;function no_cp(){clipboardData.clearData();setTimeout("no_cp()",100)}no_cp();//--></SCRIPT> Disable Page Printing Some people want to steal information by printing. Want to prevent this? Disable printing! Put this in your <head> tags. HTML Code: <script language=JavaScript> <!-- function atlpdp1(){for(wi=0;wi<document.all.length;wi++){if(document.all[wi].style.visibility!='hidden'){document.all[wi].style.visibility='hidden';document.all[wi].id='atlpdpst'}}}function atlpdp2(){for (wi=0;wi<document.all.length;wi++){if(document.all[wi].id=='atlpdpst')document.all[wi].style.visibility=''}}window.onbeforeprint=atlpdp1;window.onafterprint=atlpdp2; //--> </script> Disable Image/Text Drag This neat script will prevent anybody from dragging text or images. This also goes between the <head> tags. HTML Code: <SCRIPT LANGUAGE=javaScript><!-- document.onselectstart=new Function("return false");document.ondragstart=new Function("return false"); //--></script> =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ If you use my scripts and appreciate them, please donate to: janard@hotmail.com (PayPal) Thanks, Gold Hey, I recently logged onto my old Piczo site which I used to store pictures on( The site domain being; http://www.badboypicturessss.piczo.com/?cr=1 ) . After logging in I discoverd no images show. Just a red cross upon the corner (I've tried to view on Firefox and Internet Explorer) When clicking propeties on the picture and entering into the Firefox html I am met with, This XML file does not appear to have any style information associated with it. The document tree is shown below. − <Error> <Code>AccessDenied</Code> <Message>Access Denied</Message> <RequestId>4B0C38630330B989</RequestId> − <HostId> 0hsgiTfM+6zl+X127uhukEZM6SYj0D+HCeYk113cG8ftnK0AM5 knte5VpiqDEKo4 </HostId> </Error> Am running out of ideas of how to get the images to show, I've tried numerous forums seeking the answer to how to display the images! Thanks for reading, be great if you could help! |