 |
Cheat Engine The Official Site of Cheat Engine
|
| View previous topic :: View next topic |
| Author |
Message |
sandangel333 Expert Cheater
Reputation: 0
Joined: 06 Jul 2007 Posts: 127
|
Posted: Fri Jul 04, 2008 10:50 pm Post subject: Blog |
|
|
erm.. was wondering if anybody know if this is possible.
i was wondering if there is a way where by before a person want to view the blog, a screen will pop out and request for a password. if the password is correct, another screen will pop out for the 2nd password. and so on.
means we can add the desier amount of question for different pop out.
for example, i want the first pop out to be
"who is blahblah balh"
and if answer correct,
another pop out with the next question
"what is blah blah blah"
answer correct, next pop out
",,,,,,,,,,,,,,,,,,,,"
answer correct
then after the 3rd question, they will be able to see what the blog writes about. so means while answering the question, they will be unable to view the blog. and the question can be changed as desired.
dunnoe if this is posssbile. hope some pro can help me. TY
|
|
| Back to top |
|
 |
FullyAwesome I post too much
Reputation: 0
Joined: 05 Apr 2007 Posts: 4438 Location: Land Down Under
|
Posted: Sun Jul 06, 2008 12:26 am Post subject: Re: Blog |
|
|
| sandangel333 wrote: | erm.. was wondering if anybody know if this is possible.
i was wondering if there is a way where by before a person want to view the blog, a screen will pop out and request for a password. if the password is correct, another screen will pop out for the 2nd password. and so on.
means we can add the desier amount of question for different pop out.
for example, i want the first pop out to be
"who is blahblah balh"
and if answer correct,
another pop out with the next question
"what is blah blah blah"
answer correct, next pop out
",,,,,,,,,,,,,,,,,,,,"
answer correct
then after the 3rd question, they will be able to see what the blog writes about. so means while answering the question, they will be unable to view the blog. and the question can be changed as desired.
dunnoe if this is posssbile. hope some pro can help me. TY |
what are you actually trying to do? make a website or make a program? are all you trying to do is make it so that you must enter multiple passwords to enter a blog???
_________________
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Sun Jul 06, 2008 12:40 am Post subject: |
|
|
You could do something like this with javascript:
| Code: | <HTML>
<HEAD>
<TITLE>asdfasgdgdsa</TITLE>
</HEAD>
<script type="text/javascript">
function AskQuestions()
{
var iQuestOne = prompt( "What is 2+2?" );
var iQuestTwo = prompt( "What is 4+4?" );
if( iQuestOne == 4 && iQuestTwo == 8 )
{
window.location = "http://www.google.com";
}
}
</script>
<BODY onLoad="AskQuestions()">
<P> Other page shit here... </P>
</BODY>
</HTML> |
Keep in mind anyone can view the source and see the passwords.
_________________
- Retired. |
|
| Back to top |
|
 |
Drkgodz Flash moderator
Reputation: 2
Joined: 17 Jul 2006 Posts: 2997 Location: Houston
|
Posted: Sun Jul 06, 2008 1:38 am Post subject: |
|
|
| Wiccaan wrote: | You could do something like this with javascript:
| Code: | <HTML>
<HEAD>
<TITLE>asdfasgdgdsa</TITLE>
</HEAD>
<script type="text/javascript">
function AskQuestions()
{
var iQuestOne = prompt( "What is 2+2?" );
var iQuestTwo = prompt( "What is 4+4?" );
if( iQuestOne == 4 && iQuestTwo == 8 )
{
window.location = "http://www.google.com";
}
}
</script>
<BODY onLoad="AskQuestions()">
<P> Other page shit here... </P>
</BODY>
</HTML> |
Keep in mind anyone can view the source and see the passwords. |
Or you could have a PHP file compare answers and return true/false.
_________________
|
|
| Back to top |
|
 |
sandangel333 Expert Cheater
Reputation: 0
Joined: 06 Jul 2007 Posts: 127
|
Posted: Tue Jul 08, 2008 6:33 am Post subject: |
|
|
yep. i want to have people to enter muplitial password before able to view my blog haha.
and the script how it works?
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Tue Jul 08, 2008 9:29 am Post subject: |
|
|
| sandangel333 wrote: | yep. i want to have people to enter muplitial password before able to view my blog haha.
and the script how it works? |
| Code: | var iQuestOne = prompt( "What is 2+2?" );
var iQuestTwo = prompt( "What is 4+4?" ); |
Those popup the two questions, edit them as needed.
Then, the following checks the results of what the user inputted for the answers:
| Code: | if( iQuestOne == 4 && iQuestTwo == 8 )
{ |
Then the next part redirects the user to the next page if the answers were correct.
| Code: | | window.location = "http://www.google.com"; |
_________________
- Retired. |
|
| Back to top |
|
 |
sandangel333 Expert Cheater
Reputation: 0
Joined: 06 Jul 2007 Posts: 127
|
Posted: Tue Jul 08, 2008 6:29 pm Post subject: |
|
|
| erm.. i tired but it did not work. >.< no question poped out..
|
|
| Back to top |
|
 |
deleted19776 I post too much
Reputation: 11
Joined: 29 Apr 2007 Posts: 3838
|
Posted: Tue Jul 08, 2008 6:52 pm Post subject: |
|
|
| Wiccaan wrote: | You could do something like this with javascript:
| Code: | <HTML>
<HEAD>
<TITLE>asdfasgdgdsa</TITLE>
</HEAD>
<script type="text/javascript">
function AskQuestions()
{
var iQuestOne = prompt( "What is 2+2?" );
var iQuestTwo = prompt( "What is 4+4?" );
if( iQuestOne == 4 && iQuestTwo == 8 )
{
window.location = "http://www.google.com";
}
}
</script>
<BODY onLoad="AskQuestions()">
<P> Other page shit here... </P>
</BODY>
</HTML> |
Keep in mind anyone can view the source and see the passwords. |
Yep that's also true, and lol, not everyone can see the passwords because they are all too stupid on computers.
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You cannot download files in this forum
|
|