Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Can anyone find this program/help me make it?
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam
View previous topic :: View next topic  
Author Message
Moments
Grandmaster Cheater Supreme
Reputation: 17

Joined: 20 Mar 2008
Posts: 1196

PostPosted: Wed Jun 16, 2010 11:11 pm    Post subject: Can anyone find this program/help me make it? Reply with quote

You enter a number (let's say 112) and it redirects to

www.example.com/112.htm
Back to top
View user's profile Send private message
Cryoma
Member of the Year
Reputation: 198

Joined: 14 Jan 2009
Posts: 1819

PostPosted: Wed Jun 16, 2010 11:48 pm    Post subject: Reply with quote

Um you mean like in php?

It would be

text field = $tail;
<a href="example.com" + $tail;>Go</a>
Back to top
View user's profile Send private message
Lyfa
The Lonely Man
Reputation: 12

Joined: 02 Nov 2008
Posts: 743

PostPosted: Thu Jun 17, 2010 12:00 am    Post subject: Reply with quote

Code:
<?php
$num = htmlspecialchar($_POST['num']);
echo "<meta http-equiv=\"REFRESH\" content=\"0;url=http://example.com/".$num."\">";
?>
Just need to have a form a form like:
Code:
<form action="" method="POST">
<input type="text" name="num" /><br />
<input type="submit" value="Submit" /></form>


_________________
Back to top
View user's profile Send private message
Moments
Grandmaster Cheater Supreme
Reputation: 17

Joined: 20 Mar 2008
Posts: 1196

PostPosted: Thu Jun 17, 2010 12:31 am    Post subject: Reply with quote

holy shittt;
I've never worked with PHP. This is what I've got so far.
Code:

<?php
$num = htmlspecialchar($_POST['num']);
echo "<meta http-equiv=\"REFRESH\" content=\"0;url=http://www.serebii.net/pokedex-dp/".$num.".shtml">";

<form action="" method="POST">
<input type="text" name="num" /><br />
<input type="submit" value="Submit" /></form>
?>


It doesn't work. Whyyyy ;.;
Back to top
View user's profile Send private message
Cryoma
Member of the Year
Reputation: 198

Joined: 14 Jan 2009
Posts: 1819

PostPosted: Thu Jun 17, 2010 12:36 am    Post subject: Reply with quote

Code:
//this is html
<form action="" method="POST">
<input type="text" name="pokeput" /><br />
<input type="submit" value="Submit" /></form>

//this is php
<?php
$pokenum = htmlspecialchar($_POST[pokeput']);
echo "<meta http-equiv=\"REFRESH\" content=\"0;url=http://www.serebii.net/pokedex-dp/".$pokenum.".shtml">";
?>
Back to top
View user's profile Send private message
Anarchy
Expert Cheater
Reputation: 29

Joined: 15 Feb 2009
Posts: 104
Location: There.

PostPosted: Thu Jun 17, 2010 12:36 am    Post subject: Reply with quote

World is angry at you, hates you, some sort of god is mad, etc.
Back to top
View user's profile Send private message
Moments
Grandmaster Cheater Supreme
Reputation: 17

Joined: 20 Mar 2008
Posts: 1196

PostPosted: Thu Jun 17, 2010 12:37 am    Post subject: Reply with quote

Stone wrote:
Code:
//this is html
<form action="" method="POST">
<input type="text" name="pokeput" /><br />
<input type="submit" value="Submit" /></form>

//this is php
<?php
$pokenum = htmlspecialchar($_POST[pokeput']);
echo "<meta http-equiv=\"REFRESH\" content=\"0;url=http://www.serebii.net/pokedex-dp/".$pokenum.".shtml">";
?>
jesusfuck. I'm stupid.
Back to top
View user's profile Send private message
Cryoma
Member of the Year
Reputation: 198

Joined: 14 Jan 2009
Posts: 1819

PostPosted: Thu Jun 17, 2010 12:38 am    Post subject: Reply with quote

Sorrow wrote:
Stone wrote:
Code:
//this is html
<form action="" method="POST">
<input type="text" name="pokeput" /><br />
<input type="submit" value="Submit" /></form>

//this is php
<?php
$pokenum = htmlspecialchar($_POST[pokeput']);
echo "<meta http-equiv=\"REFRESH\" content=\"0;url=http://www.serebii.net/pokedex-dp/".$pokenum.".shtml">";
?>
jesusfuck. I'm stupid.

Naw.
Happens to all of us.
Back to top
View user's profile Send private message
Anarchy
Expert Cheater
Reputation: 29

Joined: 15 Feb 2009
Posts: 104
Location: There.

PostPosted: Thu Jun 17, 2010 12:38 am    Post subject: Reply with quote

Aname wrote:
World is angry at you, hates you, some sort of god is mad, etc.
Back to top
View user's profile Send private message
:^)
Grandmaster Cheater Supreme
Reputation: 37

Joined: 30 Jun 2008
Posts: 1062

PostPosted: Thu Jun 17, 2010 12:40 am    Post subject: Reply with quote

Aname wrote:
Aname wrote:
World is angry at you, hates you, some sort of god is mad, etc.
Back to top
View user's profile Send private message
Moments
Grandmaster Cheater Supreme
Reputation: 17

Joined: 20 Mar 2008
Posts: 1196

PostPosted: Thu Jun 17, 2010 12:43 am    Post subject: Reply with quote

First time working with PHP, I feel very terrible

this is what I've got

Code:
<?php
$pokenum = htmlspecialchar($_POST[pokeput']);
echo "<meta http-equiv=\"REFRESH\" content=\"0;url=http://www.serebii.net/pokedex-dp/".$pokenum.".shtml">";
?>

<form action="" method="POST">
Pokemon Number: <input type="pokeput" name="Pokemon Number" />
<input type="submit" />
</form>
Back to top
View user's profile Send private message
Gavin
Moderator
Reputation: 114

Joined: 30 Apr 2007
Posts: 1069

PostPosted: Thu Jun 17, 2010 12:46 am    Post subject: Reply with quote

Or you could learn let's say a coding language, and input a search button and search the pokemon by number
Back to top
View user's profile Send private message
Moments
Grandmaster Cheater Supreme
Reputation: 17

Joined: 20 Mar 2008
Posts: 1196

PostPosted: Thu Jun 17, 2010 12:47 am    Post subject: Reply with quote

Gavin wrote:
Or you could learn let's say a coding language, and input a search button and search the pokemon by number
It was just a small project; I'm probably not going to even continue it.
Back to top
View user's profile Send private message
Anarchy
Expert Cheater
Reputation: 29

Joined: 15 Feb 2009
Posts: 104
Location: There.

PostPosted: Thu Jun 17, 2010 12:48 am    Post subject: Reply with quote

Sorrow wrote:
Gavin wrote:
Or you could learn let's say a coding language, and input a search button and search the pokemon by number
It was just a small project; I'm probably not going to even continue it.
All of a sudden, ninjas!
Ninjas everywhere!
Back to top
View user's profile Send private message
whisk
Grandmaster Cheater
Reputation: 22

Joined: 04 Oct 2008
Posts: 590

PostPosted: Thu Jun 17, 2010 12:51 am    Post subject: Reply with quote

Aname wrote:
Sorrow wrote:
Gavin wrote:
Or you could learn let's say a coding language, and input a search button and search the pokemon by number
It was just a small project; I'm probably not going to even continue it.
All of a sudden, ninjas!
Ninjas everywhere!

BOWL OF CEREAL.
Back to top
View user's profile Send private message MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
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 can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites