Hi I'm really new to programming I mean really new so before answering, think in the mind of a programming n00b! Anyway, more to the point in PHP I'm trying to create an account system so every time someone fills in an HTML form it automatically creates a new variable. The new variable would obviously be what they entered and possibly would be called something like $user147 for example. Any help much appreciated!
feedback
|
closed as not constructive by Jack Maney, Treffynnon, Sergio Tulentsev, M42, Joe Feb 3 at 17:35
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
Well, a good start would be reading the manual. That's aside, you should learn about SQL and how to make and use tables. My advice to you is this: get reading, try it out, if you get stuck along the way, come back here and ask. No one here will write code for you. | |||||||
feedback
|
|
Probably bad practice, however what you are trying to do is possible:
now you have a variable named $user147 that contains the string 'user147' | |||
|
feedback
|
|
Go to the PHP website and read about the $_REQUEST superglobal. http://www.php.net/manual/en/reserved.variables.request.php Don't use random variable names, as it is poor practice. | |||
|
feedback
|