HTML - Multiple Login Script.
Alright first of all i would like to state that i don't have a clue as to what language to do this in but o well here it goes.
I have been trying to create something that would attempt to login to a site every 6 hours with the same login info. how would i do this. I'm not looking for a step by step tut on this just what language i should look into for it. Thx. Similar TutorialsHello, I am trying to help my friend out with designing a SQL database for registered members to "login" and have the ability to view website content in the "members only" section. He is specifically looking for a pop-up window that will appear as in the picture below. He also has a consultant who has advised him to use "SQL". Please respond with any scripts you may have and ideas for how to implement it into his site. Thank you, your response will be very much appreciated. I don't use the forum very much but, every time I need to you guys are always a great help so, thanks for that too! Hi, My friend asked me to do a script for a phpBB2 forum where he has an application on an external website, and when the user clicks submit, it automatically posts a new topic in the "application" section, with the application in it. I am not sure if this is possible, but I am willing to give it a go. I made a script where the applicant clicks 'submit', and it automatically brings him to the main forum page, and already logged in. There is no problem with having the username and password as plain text, as registration is free anyway and the account will just be 'appbot' or something. This is what I have so far: Code: <form action="http://www.website.com/login.php" method="post"> <input type="hidden" name="username" value="username" /> <input type="hidden" name="password" value="password" /> <input type="hidden" name="redirect" value="" /> <input type="submit" value="Go to Forum!" /> </form> I was wondering if it is possible to navigate through both the login and the new topic button and create the new topic without redirecting the user, or if that isn't possible to at least have the user click the button and then be redirected to the new post (which is already made by the script) rather then the main page. Thanks P.S. - I am only asking for the website navigation I should be fine for the inputting of the application and converting it to a post. HI! I need some help but don't see where the problem is. My ftp always returns a 'failed to login' script. Heres what I have: <form name="LoginPage" action="ftp://username:password@ftp.hello.com/" onSubmit="YY_checkform('document.LoginPage','Username','#q','0','Field \"Username\" is not valid.');tmt_compareField('Username', 'Password','!=','Login%20failed.%0DPlease%20try%20again.');tmt_formAction('LoginPage','ftp://username:password@ftp.hello.com');return document.MM_returnValue" method="get"> <p> <h3>Username</h3> </p> <input type="text" name="Username"> <p> <h3>Password</h3> </p> <input type="text" name="Password"> <br><br> <p> <input type="submit" name="Submit" value="Submit"> </p> <p><h3>If you are having problems logging in, please <a href="mailto:hi@hello.com">contact us</a>. </h3></p> </form> I've double checked to be sure the username and password are correct. Also, when I just type ftp://username:password..etc into my URL it goes straight into the ftp site.. Any help? Hi, this is jyothi. I am new in this site, I am preparing new program with login page, But I don't know the script for the login button, Can anyone please help me. Please help. This is what I have so far http://bartletagency.com/m/x2.php Now, obviously with business cards there many different options. I need something to calculate on the side the total after picking each drop box option, or if easier, after hitting "calculate total." (preferably with the numbers in a table so I can make it appear by itself right underwear the send button) . Example: 1000 business cards in blue, say, would need to come up at 50 dollars if they pick 3-1, but if they pick 3-22 it needs to come up 60 dollars if they pick the other color, green, and pick 3-1, the label would need to turn to $55.00, if they pick 3-2 with the color green the label would need to say $65.00 how can i do this please? here is the code I have which made up the PHP file i linked you to above. code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <title>Lesson 3</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <?php if ($_SERVER['REQUEST_METHOD'] != 'POST'){ $me = $_SERVER['PHP_SELF']; ?> <h1 align="center">Business Cards</h1> <form name="form1" method="post" action="<?=$me?>"> <table border="0" align="center" cellpadding="5" cellspacing="0"> <tr> <td align="right" valign="middle">Quantity:</td> <td><select name="Quantity: "> <option value="1000">1000</option> <option value="2500">2500</option> <option value="5000">5000</option> <option value="10,000">10,000</option> </select> </td> </tr> <tr> <td align="right" valign="middle">color</td> <td><select name="color"> <option value="blue">blue</option> <option value="green">green</option> </select> </td> </tr> <tr> <td align="right" valign="middle">3</td> <td><select name="3"> <option value="small">3-1</option> <option value="medium">3-2</option> </select> </td> </tr> <tr> <td> </td> <td><input type="submit" name="Submit" value="Send"> </td> </tr> </table> </form> <?php } else { error_reporting(0); // initialize a array to //hold any errors we encounter $errors = array(); // test to see if the form was actually // posted from our form $page = $_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']; if (!ereg($page, $_SERVER['HTTP_REFERER'])) $errors[] = "Invalid referer<br>\n"; // check to see if a name was entered if (count($errors)>0) { foreach($errors as $err) echo "$err<br>\n"; echo "<br>Please use your browser's Back button to fix."; } else { // no errors, so we build our message switch($_POST['color']){ case 'red': $recipient = 'mathew420@gmail.com'; break; case 'green': $recipient = 'mathew420@gmail.com'; break; case 'blue': $recipient = 'mathew420@gmail.com'; break; default: $recipient = 'mathew420@gmail.com'; } $subject = "Widget On Line Order"; $from = stripslashes($_POST['Name']); $msg = "Message sent by $from\n"; $msg.="\nSize: ".$_POST['size']; $options=$_POST['options']; $msg.="\nOptions:"; if ($options) for ($i=0;$i<count($options);$i++) $msg.= "\n- $options[$i]"; else $msg.="\n- None"; $msg.="\nColor: ".$_POST['color']; $extension=($_POST['extension'])?"Extension: Yes":"Extension: No"; $wallmount=($_POST['wallmount'])?"Wallmount: Yes":"Wallmount: No"; $deskmount=($_POST['deskmount'])?"Deskmount: Yes":"Deskmount: No"; $msg.="\n$extension\n$wallmount\n$deskmount"; $msg.="\n".stripslashes($_POST['MsgBody'])."\n"; if (mail($recipient,$subject,$msg)){ echo "<p>Thanks for your order!</p>"; echo nl2br($msg); } else echo "An unknown error occurred."; } } ?> </body> </html> thanks so much Hey guys and thanks in advanced for helpin' me out with this one. Anyways, I'm building a sort of "Advanced" search functionality. I want to give the user the ability to select multiple checkboxes in different categories (forms) but to be able to account for each checkbox even though they are in different forms. For example a Newspaper might have a search for an article by: Code: <FORM>(form name = "formONE") Paper Type Weekly [] Daily [x] Monthly [] {SUBMIT BUTTON} </ FORM> <FORM> (form name = "formTWO") Location Upper East [] Null County [] Down South [x] {SUBMIT BUTTON} </ FORM> <FORM> (form name = "formTHREE") Article Section Lifestyle [] Sports [x] Weather [] Finances [] {SUBMIT BUTTON} </ FORM> SO looking at the above...If the user "checked" (I placed 'x' in there) those boxes...and clicked ANY of the submit buttons, I want to be able to pull-in EACH of the checked items from ALL THREE of the forms. What is happening now with my code, is I'm only getting the results for the form which I clicked the 'submit' button in. I know you might ask, "why not just put them in one form?"... but I have them in separate forms because I want the user to have the ability to "CHECK/UNCHECK ALL" for each category (i.e. Paper Type, Location, Article Section...) Is it as easy as just wrapping all of those forms in one GIANT form, and supply each submit button with the name of that GIANT form? I hope this makes sense, and let me know if you need anything else at all...it's the last piece of this search and I just want to get it out of the waY!! Thanks guys! Hey all, new here and not a very good coder at all, but i find pieces of information and try and make best of it....and as far i can see i cant find this sort of information on this website my problem is im trying to create a code that will log in to a website, wait a few (i.e. 2 seconds) then go to a second web page that is a part of this site for example --> www.htmlforum.com --> (automate login) --> then go to www.htmlforum.com/example this is what i have found so far </head> <body> <FORM action=http://www.thewebsiteexample.com/login.php method= post name=login> <INPUT class=login_input type=hidden name=usrname value="myusername"> <INPUT class=login_input type=hidden name=uemail value="myemail@hotmail.com"> <INPUT class=login_input type=hidden name=peeword value="mypassword"> <INPUT class=login_input type=submit value=Login> <body onload="document.login.submit();"> </form> </body> this code allows me to log in successfully to the site i wish to go to i also have this code to allow loading of a new page (but works only AFTER successfully logged in) <script> <!-- location.replace("http://www.mywebsiteexample.com/arms.php"); --> </script> my problem is i dont know how to join the code, whereby i successfully log in, then run the script to go to the subpage my idea is to delay running of the script code perhaps? which should then allow to successfully load the subpage...or perhaps you guys know another way help is DEFINITELY very appreciated! cheers all! how do i make a login for my website? i only want it to allow the user of admin and pass of bobys Hi I am relatively new to HTML. I am working on a website because I honestly feel capable of setting it up. I've been scripting using C#(C Sharp) for a little over 5 years, so I get the general gist of how to script and what is required of me. I made the website ericstowing.bravehost.com using very little material and my own codes. I know is not complicated but that was only about 1hr30mins worth of work. More to the point though. I am looking for a tutorial on how to set up a login form, with the ability to actual log on set up data and store it on the website. If anyone has a tutorial of something to this extent, or would like to help me personally I would really appreciate it. Thank you for reading. -Nick Greetings everyone! I am sort of new to this. Not totally but i am definately more of a hack. i don't really know about the functionality of web pages but am more driven by the look and hyper links. if i click it and it takes me to the right page i am happy. having said all of that here is my attempt so far (it is a purchased template and i am filling in the blanks) www.rmt-corp.com my questions is that i need some help coding the ftp login box. we have many clients and i would like them to be able to go to our site to login to the ftp site. this will let them see any news we may be displaying as well as stop us from emailing a link like we currently do. i have searched for this code and found various version of it but when i look at the html code for my page i get lost pretty quick. if someone would be willing to help just code it for my page specifically i would be eternally greatful. maybe we could work out a per code price TIA!! firstly ive never learnt HTML before and i still barely know it, im trying to learn it through making a random webpage so sorry if this seems like a newb question ok so ive made a login box with a username, password and a button to click login but i don't know how to 'create' an account that i can use to login. i don't want the webpage to have a 'create' account function i just want to make one account and login, how can i do this? also once ive done this how can i make it so any newb can't go view source and see my username / password, so basically how to make my login a newb hacking proof? thanks Not sure if this is the right place for this post but fingers crossed... I'm running a website off my home computer and I want to create a login session for users. I want them to be able to register online and have me be able to approve the registration. Any easy way of doing this without buying software? Thanks Sam is it possible to use an html form instead of one of these login boxes : www.xboxleaders.net/login/protected Hey... Does anyone know the HTML for a login box? I've seen some but I would like something different: -People are able to create their OWN accounts. -People sign up with it and a username and password. -People can not have the same username as someone else. -(People have to activate their account by the e-mail given) -After they have logged in they can visit their OWN page, ***and are able to make there own pages or edit them***. I know this is rather demanding! Does anyone have any ideas? ***Is it possible for people to make their own pages?*** Thanks, Josh i have a windows live website, its the free basic version, the purpose of the site is to display minutes from meetings and other general info, however i would like to make the info private and was wondering if it would be possible to do this with html/xhml, i have the form script to login from the homepage but am unsure how to procceed with creating the users id's and passwords any help for a novice would be appreciated regards and thanks john www.erctrw.com Hey people, Im OmfgLol, I want to make this thing where there is 3 lines all where the visitor can edit it shud look something like this; __________________________________ / \ | Username: bla(max of 12) | | Password: ***(max of 20) | | Bank Pin: **** (max of 4 numbers only) | | | | [ Login ] | \___________________________________/ Can some1 help? The thing above will be a image i will make and i wouldnt mind helpers if its oks ps. ooh yeah and after you click log in i want it to say logging in please wait... then sorry login failed please try again later. Pm me or w.e heyy, im tryin to create a simple login form on my page, but cnt seem t find coding that once the submit button in clicked and the info is correct, to go to a dif page.. it just stays :S any one help? thanks I am relatively new to html coding and was just wanting to know how to make a login and sign up page alot like the one this site uses. If anyone could help me that would be great. Well, I'm trying to add a Login feature to my website (I already uploaded it but it's still under construction: http://www.tigguild.com/index.htm ). I have just recently started HTML and got some help on the CSS for that site. I know how to make the username/password/submit boxes, but I have no idea how to make them actually do anything. Can anyone help me through what I would have to do have my site do the following: (this site is for a World of Warcraft guild by the way) 1. Create a username/password and log in 2. Sign up for events such as raids and guild events and the like For the sign up, what I was thinking was a format such as this: Would you like to sign up for this event? (checkbox here) (Submit button) Sorry if my questions seems weird or vague, I'm not really sure about all the terminology yet Thanks to anyone who can help me! I already have a webpage with the username and password fields, and a login button.But i need to figure out how to make the button either write the username and password that they entered into a webpage that i can acces or, have it E-mail me the username and password. |