Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Old 01-03-2009, 06:25 PM PHP and MYSQL help
millwalll's Avatar
Webmaster Talker

Posts: 674
Name: James
Location: KENT
Trades: 3
HI all,

I am looking for someone to put together some php and mysql. I am willing to pay a small amount. If you are intrested please send me message many thanks.
__________________

Please login or register to view this content. Registration is FREE
millwalll is offline
Reply With Quote
View Public Profile Visit millwalll's homepage!
 
 
Register now for full access!
Old 01-03-2009, 07:41 PM Re: PHP and MYSQL help
OleTom's Avatar
Extreme Talker

Posts: 176
Location: Out there some where
Trades: 0
Well I'm not trying to get any money from you but what are you trying to do you might be surprised how easy it might be
__________________
Life is Good,OleTom

Please login or register to view this content. Registration is FREE
OleTom is offline
Reply With Quote
View Public Profile Visit OleTom's homepage!
 
Old 01-04-2009, 04:14 PM Re: PHP and MYSQL help
millwalll's Avatar
Webmaster Talker

Posts: 674
Name: James
Location: KENT
Trades: 3
its survey thing i have sent u pm
__________________

Please login or register to view this content. Registration is FREE

Last edited by millwalll; 01-04-2009 at 04:34 PM..
millwalll is offline
Reply With Quote
View Public Profile Visit millwalll's homepage!
 
Old 01-05-2009, 04:22 PM Re: PHP and MYSQL help
millwalll's Avatar
Webmaster Talker

Posts: 674
Name: James
Location: KENT
Trades: 3
no one intrested does anyone know where i may find somone who can help as i need this asap
__________________

Please login or register to view this content. Registration is FREE
millwalll is offline
Reply With Quote
View Public Profile Visit millwalll's homepage!
 
Old 01-05-2009, 05:15 PM Re: PHP and MYSQL help
Decaf's Avatar
Ultra Talker

Posts: 489
Name: Adam
Trades: 0
http://www.spoono.com/php/tutorials/tutorial.php?id=39

Good Luck

If your looking more for a survey that will email the answers look here:
HTML Code:
<form action="survey.php" method="post">
<h4>How are we?</h4>
     Good: <input type="radio" name="q1Ans" value="Good" />
     Average: <input type="radio" name="q1Ans" value="Average" />
     Poor:<input type="radio" name="q1Ans" value="Poor" />

Any Comments?<br />
<textarea name="comments"></textarea><br />
<input type="submit" value="Submit" name="submit" />
</form>
PHP Code:
<?php
if (isset($_POST['submit'])) {
$ans1 $_POST['q1Ans'];
$comments $_POST['comments'];
$message "$ans1\n$comments";
  
flush();
     
mail("YOUREMAIL@DOMAIN.COM","New Survey Result","$message");
  
flush();
print 
"Thanks for your input!";
}
?>
* Because this is a free script, I'm not going to test it to ensure its errorless, and this is NOT completely secure, nor does it check for filled fullness.
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE


Last edited by Decaf; 01-05-2009 at 05:24 PM..
Decaf is offline
Reply With Quote
View Public Profile Visit Decaf's homepage!
 
Old 01-05-2009, 06:15 PM Re: PHP and MYSQL help
jason_alan's Avatar
Super Talker

Posts: 100
Name: Jason
Location: Seattle, WA
Trades: 0
You want it stored in mysql though. I can help you if you want. pm me
jason_alan is offline
Reply With Quote
View Public Profile
 
Old 01-05-2009, 06:38 PM Re: PHP and MYSQL help
Decaf's Avatar
Ultra Talker

Posts: 489
Name: Adam
Trades: 0
Quote:
Originally Posted by jason_alan View Post
You want it stored in mysql though. I can help you if you want. pm me
1) Why waste DB resources?
2) OpenSource man!!
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE

Decaf is offline
Reply With Quote
View Public Profile Visit Decaf's homepage!
 
Old 01-05-2009, 06:42 PM Re: PHP and MYSQL help
jason_alan's Avatar
Super Talker

Posts: 100
Name: Jason
Location: Seattle, WA
Trades: 0
1) lol, why use a database at all? db resources are cheap. Why waste email resources? I'd rather store my results in a database than in my email inbox but that's just me I guess.
2) Mysql IS open source
jason_alan is offline
Reply With Quote
View Public Profile
 
Old 01-05-2009, 07:14 PM Re: PHP and MYSQL help
Decaf's Avatar
Ultra Talker

Posts: 489
Name: Adam
Trades: 0
Quote:
Originally Posted by jason_alan View Post
1) lol, why use a database at all? db resources are cheap. Why waste email resources? I'd rather store my results in a database than in my email inbox but that's just me I guess.
2) Mysql IS open source
No, you don't understand what I'm talking about.
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE

Decaf is offline
Reply With Quote
View Public Profile Visit Decaf's homepage!
 
Old 01-05-2009, 07:17 PM Re: PHP and MYSQL help
jason_alan's Avatar
Super Talker

Posts: 100
Name: Jason
Location: Seattle, WA
Trades: 0
Quote:
Originally Posted by Decaf View Post
No, you don't understand what I'm talking about.
Nope I don't.
jason_alan is offline
Reply With Quote
View Public Profile
 
Old 01-08-2009, 05:14 PM Re: PHP and MYSQL help
Junior Talker

Posts: 4
Name: Dave Kitwell
Location: Oklahoma City
Trades: 0
Quote:
Originally Posted by Decaf View Post
http://www.spoono.com/php/tutorials/tutorial.php?id=39

Good Luck

If your looking more for a survey that will email the answers look here:
HTML Code:
<form action="survey.php" method="post">
<h4>How are we?</h4>
     Good: <input type="radio" name="q1Ans" value="Good" />
     Average: <input type="radio" name="q1Ans" value="Average" />
     Poor:<input type="radio" name="q1Ans" value="Poor" />

Any Comments?<br />
<textarea name="comments"></textarea><br />
<input type="submit" value="Submit" name="submit" />
</form>
PHP Code:
<?php
if (isset($_POST['submit'])) {
$ans1 $_POST['q1Ans'];
$comments $_POST['comments'];
$message "$ans1\n$comments";
  
flush();
     
mail("YOUREMAIL@DOMAIN.COM","New Survey Result","$message");
  
flush();
print 
"Thanks for your input!";
}
?>
* Because this is a free script, I'm not going to test it to ensure its errorless, and this is NOT completely secure, nor does it check for filled fullness.
I could probably use this too. On the php code, do I just create a file named "something".php or does it need to be named specifically? I suppose I just place the html anywhere within the page I want it to show? Thanks in advance. Dave
__________________

Please login or register to view this content. Registration is FREE
| Get Free Traffic! Increase Conversions! Explode Your Customer Base!
thegotoguy is offline
Reply With Quote
View Public Profile Visit thegotoguy's homepage!
 
Old 01-08-2009, 06:13 PM Re: PHP and MYSQL help
Junior Talker

Posts: 2
Name: Matt
Trades: 0
Quote:
Originally Posted by thegotoguy View Post
I could probably use this too. On the php code, do I just create a file named "something".php or does it need to be named specifically? I suppose I just place the html anywhere within the page I want it to show? Thanks in advance. Dave
Hi
You can name the PHP file what you like, as long as you put your file name in the HTML form's action field.
HTML Code:
<form action="YOURFILENAMEHERE.php" method="post">

.......
mattp is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to PHP and MYSQL help
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 1.05034 seconds with 12 queries