Not so newb, need pointer...

RalphyBoy

Regular Member
Joined
Jul 19, 2008
Messages
378
Reaction score
52
racking my brain on how to do the following:

1. making a submit form on website, form is ok, need to know how to set up the backend on the server.

2. make a site where customers can upload pictures via a password. have NO idea on how to setup the backend.


Any pointers, greatly appreciated!!!!
 
The best way to do this, for 1 and 2 would be to use PHP and mySQL.

1. This would be done by adding action="/phpscript.php" and method="post" to the form tag, and then creating the relevant back-end infrastructure within the phpscript.php and your database.

2. This would be done by doing the same thing, but using an if statement in the PHP, which checks the password against a string in the database or within the same PHP script, and only executes if the same password is used.
 
Dude if you battle with PHP why not try something like emailmeform.com...Thats what i use If i want a form done, i don't like to mess around with shit that im only half good at...

hope it helps
 
Back
Top