I'm really new to coding so my question might not be worded the best or just dumb, forgive me. Here's what I'm trying to do:
I have a basic text-entry form:
The user will essentially enter a word such as 'Technology' which will take them to the location (.com/technology). Basically users are creating pages on the fly. How would that work? This next question might not be PHP related but I'd also like pages that are inactive for 24 hours to be deleted.
How would I go about doing this, any tips or maybe I'm going about this wrong?
In it's simplest terms, I'd like a user to create a public page under my domain using a word (which will be filtered) where other users can post comments about the topic (technology). I know I could use a message board, chat room, plenty of other alternatives but I have more I'd like to add to this, just having a hard time understanding multiple languages.
I have a basic text-entry form:
Code:
<div id="chatfind"> <form action="form_action.php"> School: <input type="text" name="chatname" value="Technology"/> <input type="submit" value="Go" /> </form> </div>
How would I go about doing this, any tips or maybe I'm going about this wrong?
In it's simplest terms, I'd like a user to create a public page under my domain using a word (which will be filtered) where other users can post comments about the topic (technology). I know I could use a message board, chat room, plenty of other alternatives but I have more I'd like to add to this, just having a hard time understanding multiple languages.
Comment