I am creating a web page where someone can visit it. They type a question in a field and click a button, and a response is passed back to them. (Kind of like a magic 8 ball).
What I'm trying to do is set it up something like this:
http://img585.imageshack.us/img585/997/layoutoi.png
I'm still new to hand-coding things - I have a book on HTML/CSS and one on PHP, which lay still unread, so I'll probably need a step-by-step process. (I have a host and everything, so that's already taken care of.) Thanks in advance!
I know you tagged the question PHP, but you might want to consider using javascript instead. The advantage is that you won't need to reload the page - for something this simple, there isn't really any advantage to using php.
A javascript solution would look something like this:
To do it without a page load (i.e. immediately after the button click), you'll have to do it in Javascript (working jsfiddle example here)
To do this instead in PHP (which will require a new page load), you could do this:
First, we create an array ('list') of random things and store it in the variable
$randomThings
.Elements in an array can be accessed using
$variableName[$index]
-- in this case, the indices will simply be 0,1,2,3,4,5,6.The reason this one-liner (beginning with 'echo') works is,
mt_rand
is going to return a random number between 0 and 6, so it'll grab a random element from the $randomThings array.echo
will then spit it to the page.Dorkitude's answer is a fine example but just as an additional bit of advice I would like to point out that it is usually considered bad practice to hard code data inside your scripts (i.e. $value = 'someValue') unless there is absolutely no other way around it. Instead you would use some kind of data source for your responses instead (plain text file, database, web service etc).
For example lets say you have stored your list in a plain text file called 'randomThings.txt' and placed each response on its own line. You could then adapt Dorkitude's code like so: