Hello evryone!,
I am looking to do the following in php, and I have little php experience, however, I have done alot of C++. Anyways, here is what I want to do:
1) Create a form for people to submit information: Make a basic page with the following text boxes:
F_Name
L_Name
eMail
City
State
etc.....
2) Email me to approve or disapprove: It will show me the information that was typed in the register form. Possibly give 2 links in my email, disapprove or approve.
3) Copy files from on directory to a new directory: make a directory based on one of the fields in the registration after I approve it. Then copy a directory to this new folder.
4) Edit some .php files, based on some variables: Open a few php files, and find where variables are defined, and edit that
5) Insert some mySQL tables: Self explanitory
I was wondering a few things, can this be done in php? How do you think it will take me? Do you guys have any suggestions, tutorials or comments on how I should do this? Lastly, how much will someone do this for? Any comments greatly appreciated!
THANX!
-Chris
Can someone help me?
Moderator: General Moderators
Can someone help me?
Last edited by syschat on Sat Feb 05, 2005 5:05 am, edited 1 time in total.
-
Hi,
I am sure someone will do it on per hour basis or for a fixed price.
djot
-
Hi,
Yes.I was wondering a few things, can this be done in php?
How... long? Depends on your php knowledge and other (not mentioned?) requirements of your project. I guess I would need a few hours to maximum one day.How do you think it will take me?
So where exactly is your problem or your knowledge lack?Do you guys have any suggestions, tutorials or comments on how I should do this?
Please post your requirements again, more detailed this time.Lastly, how much will someone do this for?
I am sure someone will do it on per hour basis or for a fixed price.
djot
-
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
1) http://werbach.com/barebones/
2) http://php.net/mail
3) http://php.net/opendir http://php.net/copy http://php.net/mkdir
4) http://php.net/file_get_contents http://php.net/preg_replace http://php.net/fopen
5) http://dev.mysql.com/doc/mysql/en/create-table.html http://dev.mysql.com/doc/mysql/en/insert.html
2) http://php.net/mail
3) http://php.net/opendir http://php.net/copy http://php.net/mkdir
4) http://php.net/file_get_contents http://php.net/preg_replace http://php.net/fopen
5) http://dev.mysql.com/doc/mysql/en/create-table.html http://dev.mysql.com/doc/mysql/en/insert.html
i have a good idea that is easyer and will save space:
instead of copying files to a new directory (which im assuming your going to be making possiblly by the name of the person) make a symbolic link to a base folder. then have the php file read what symbolic "folder" it is in and base the information off that.
Funcitons you will need to complete this
http://www.php.net/symlink
http://www.php.net/dirname
http://www.php.net/sizeof
http://www.php.net/explode
http://www.php.net/strpos
oh to delete symlinks use unset();
instead of copying files to a new directory (which im assuming your going to be making possiblly by the name of the person) make a symbolic link to a base folder. then have the php file read what symbolic "folder" it is in and base the information off that.
Code: Select all
їSYMBOLIC LINKS]
|<-=-User
|<-=-User
їmain folder]<--------------------|<-=-User
-phpfile.php |<-=-User
|<-=-User
|<-=-User
|<-=-UserFuncitons you will need to complete this
http://www.php.net/symlink
http://www.php.net/dirname
http://www.php.net/sizeof
http://www.php.net/explode
http://www.php.net/strpos
oh to delete symlinks use unset();