[advanced search]
 

Go Back   NamePros.com > Discussion > Web Design & Development > Programming

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.


Closed Thread
 
LinkBack Thread Tools
Old 10-28-2006, 07:24 PM   #1 (permalink)
Senior Member
 
faisj's Avatar
 
Join Date: Mar 2005
Location: The Netherlands
Posts: 3,198
60.18 NP$ (Donate)

faisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to behold

Child Abuse Child Abuse Baby Health Cancer Survivorship Child Abuse
Question PHP form question

I have made 2 php files script.php
and contact.htm

contact.htm
HTML Code:
 <p>Get your tickets:<br> 
                  <FORM 
                              action="script.php"
                              method="post">
                     Naam: <INPUT name=name 
                              size=10 
                              style="BACKGROUND-COLOR: #FFFFFF; BORDER-BOTTOM: #F383A9 1px solid; BORDER-LEFT: #F383A9 1px solid; BORDER-RIGHT: #F383A9 1px solid; BORDER-TOP: #F383A9 1px solid; FONT-FAMILY: Arial; Helvetica; Microsoft Sans Serif; FONT-SIZE: 8pt; HEIGHT: 18px; WIDTH: 100px;" 
                              value= ><br>
                      Aantal kaarten: <INPUT name=amountoftickets 
                              size=10 
                              style="BACKGROUND-COLOR: #FFFFFF; BORDER-BOTTOM: #F383A9 1px solid; BORDER-LEFT: #F383A9 1px solid; BORDER-RIGHT: #F383A9 1px solid; BORDER-TOP: #F383A9 1px solid; FONT-FAMILY: Arial; Helvetica; Microsoft Sans Serif; FONT-SIZE: 8pt; HEIGHT: 18px; WIDTH: 20px;" 
                              value= > <br>
                      E-mail adres: <INPUT name=email 
                              size=10 
                              style="BACKGROUND-COLOR: #FFFFFF; BORDER-BOTTOM: #F383A9 1px solid; BORDER-LEFT: #F383A9 1px solid; BORDER-RIGHT: #F383A9 1px solid; BORDER-TOP: #F383A9 1px solid; FONT-FAMILY: Arial; Helvetica; Microsoft Sans Serif; FONT-SIZE: 8pt; HEIGHT: 18px; WIDTH: 100px;" 
                              value= ><br>
                      Mobiel nummer: <INPUT name=mobilenr
                              size=10 
                              style="BACKGROUND-COLOR: #FFFFFF; BORDER-BOTTOM: #F383A9 1px solid; BORDER-LEFT: #F383A9 1px solid; BORDER-RIGHT: #F383A9 1px solid; BORDER-TOP: #F383A9 1px solid; FONT-FAMILY: Arial; Helvetica; Microsoft Sans Serif; FONT-SIZE: 8pt; HEIGHT: 18px; WIDTH: 80px;" 
                              value= ><br>
<p align=right>
                      <a href="script.php" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('submit','','images/submit_over.gif',1)"><img src="images/submit_up.gif" name="submit" width="49" height="18" border="0" align="absmiddle"></a> 


script.php
PHP Code:
<?
$mail
= popen("/usr/sbin/sendmail -t THE EMAIL ADDRESSl","w");
fwrite($mail,"From: $email\n");
fwrite($mail,"To: THE EMAIL ADDRESS\n");
fwrite($mail,"Subject: EMAIL underground\n");

fwrite($name,"\n");
fwrite($amountoftickets,"\n");
fwrite($mobilenr,"\n");
fwrite($mail,"SUBSCRIBE underground\n");
pclose($mail);include("dank.html");
?>
Could someone help me... it aint working...

- Faisj
__________________

The PPC Parking Guide.com
~how much do you want to earn today?


Last edited by faisj; 10-28-2006 at 08:35 PM.
faisj is offline  
Old 10-28-2006, 07:37 PM   #2 (permalink)
Dan
Buy my domains.
 
Dan's Avatar
 
Join Date: Feb 2006
Posts: 2,801
56.00 NP$ (Donate)

Dan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant future

Autism Autism Autism Autism Autism Autism Autism
Change
Code:
fwrite($name,"\n");
fwrite($amountoftickets,"\n");
fwrite($mobilenr,"\n");
To
Code:
fwrite($mail, $name."\n");
fwrite($mail, $amountoftickets."\n");
fwrite($mail, $mobilenr."\n");
Dan is offline  
Old 10-28-2006, 07:43 PM   #3 (permalink)
Senior Member
 
faisj's Avatar
 
Join Date: Mar 2005
Location: The Netherlands
Posts: 3,198
60.18 NP$ (Donate)

faisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to behold

Child Abuse Child Abuse Baby Health Cancer Survivorship Child Abuse
I changed it but it still does not work...

I did not get any email.

I this piece of code correct? :
PHP Code:
$mail = popen("/usr/sbin/sendmail -t THE EMAIL ADDRESS","w");
fwrite($mail,"From: $email\n");
fwrite($mail,"To: THE EMAIL ADDRESSl\n");
fwrite($mail,"Subject: EMAIL underground\n");
__________________

The PPC Parking Guide.com
~how much do you want to earn today?


Last edited by faisj; 10-28-2006 at 08:35 PM.
faisj is offline  
Old 10-28-2006, 07:45 PM   #4 (permalink)
Dan
Buy my domains.
 
Dan's Avatar
 
Join Date: Feb 2006
Posts: 2,801
56.00 NP$ (Donate)

Dan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant future

Autism Autism Autism Autism Autism Autism Autism
I've never sent an email like that before.

Check out mail().
Dan is offline  
Old 10-28-2006, 07:49 PM   #5 (permalink)
Senior Member
 
faisj's Avatar
 
Join Date: Mar 2005
Location: The Netherlands
Posts: 3,198
60.18 NP$ (Donate)

faisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to behold

Child Abuse Child Abuse Baby Health Cancer Survivorship Child Abuse
I dont understand it : (

I am not not good at all with php...

could you edit the script.php for me??? please...
(I am totally ready to pay some NP$'s)
__________________

The PPC Parking Guide.com
~how much do you want to earn today?

faisj is offline  
Old 10-28-2006, 07:52 PM   #6 (permalink)
Dan
Buy my domains.
 
Dan's Avatar
 
Join Date: Feb 2006
Posts: 2,801
56.00 NP$ (Donate)

Dan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant future

Autism Autism Autism Autism Autism Autism Autism
Change script.php to
PHP Code:
<?php

$message
= "Name: $name\n
            Tickets: $amountoftickets\n
            Mobilenr: $mobilenr"
;
mail('-- YOUR EMAIL --', 'EMAIL underground', $message, 'From: '. $from . "\r\n");
include(
"dank.html");

?>
That should work, but it's not very secure.

Last edited by Dan; 10-28-2006 at 09:39 PM.
Dan is offline  
Old 10-28-2006, 07:56 PM   #7 (permalink)
Senior Member
 
faisj's Avatar
 
Join Date: Mar 2005
Location: The Netherlands
Posts: 3,198
60.18 NP$ (Donate)

faisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to behold

Child Abuse Child Abuse Baby Health Cancer Survivorship Child Abuse
I got a email but only:

Quote:
Name:

Tickets:

Mobilenr:
No information what i submitted has been send along.
Also the email: is not there..

the email should come from info@theundergroundparty.nl
__________________

The PPC Parking Guide.com
~how much do you want to earn today?

faisj is offline  
Old 10-28-2006, 07:59 PM   #8 (permalink)
Dan
Buy my domains.
 
Dan's Avatar
 
Join Date: Feb 2006
Posts: 2,801
56.00 NP$ (Donate)

Dan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant future

Autism Autism Autism Autism Autism Autism Autism
PHP Code:
<?php

$email           
= $_POST['email'];
$name            = $_POST['name'];
$amountoftickets = $_POST['amountoftickets'];
$mobilenr        = $_POST['mobilenr'];
$message         = "Email: $email\n
                    Name: $name\n
                    Tickets: $amountoftickets\n
                    Mobilenr: $mobilenr"
;
                    
mail('-- YOUR EMAIL --', 'EMAIL underground', $message, 'From: '. $from . "\r\n");
include(
"dank.html");

?>

Last edited by Dan; 10-28-2006 at 09:39 PM.
Dan is offline  
Old 10-28-2006, 08:02 PM   #9 (permalink)
Senior Member
 
faisj's Avatar
 
Join Date: Mar 2005
Location: The Netherlands
Posts: 3,198
60.18 NP$ (Donate)

faisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to behold

Child Abuse Child Abuse Baby Health Cancer Survivorship Child Abuse
Again no info was send along:

I got:
Quote:

Email:

Name:

Tickets:

Mobilenr:
__________________

The PPC Parking Guide.com
~how much do you want to earn today?

faisj is offline  
Old 10-28-2006, 08:09 PM   #10 (permalink)
Dan
Buy my domains.
 
Dan's Avatar
 
Join Date: Feb 2006
Posts: 2,801
56.00 NP$ (Donate)

Dan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant future

Autism Autism Autism Autism Autism Autism Autism
Ah.. I figured out the problem.. you have a link to script.php.. you aren't actually submitting the form.

Change contact.html to
Code:
<p>Get your tickets:<br>
<FORM action="script.php" method="post" name="form">
	Naam: 
	<INPUT name="name" size="10" style="BACKGROUND-COLOR: #FFFFFF; BORDER-BOTTOM: #F383A9 1px solid; BORDER-LEFT: #F383A9 1px solid; BORDER-RIGHT: #F383A9 1px solid; BORDER-TOP: #F383A9 1px solid; FONT-FAMILY: Arial; Helvetica; Microsoft Sans Serif; FONT-SIZE: 8pt; HEIGHT: 18px; WIDTH: 100px;" value="" /><br />
	Aantal kaarten: 
	<INPUT name="amountoftickets" size="10" style="BACKGROUND-COLOR: #FFFFFF; BORDER-BOTTOM: #F383A9 1px solid; BORDER-LEFT: #F383A9 1px solid; BORDER-RIGHT: #F383A9 1px solid; BORDER-TOP: #F383A9 1px solid; FONT-FAMILY: Arial; Helvetica; Microsoft Sans Serif; FONT-SIZE: 8pt; HEIGHT: 18px; WIDTH: 20px;" value="" /><br />
	E-mail adres: <INPUT name="email" size="10" style="BACKGROUND-COLOR: #FFFFFF; BORDER-BOTTOM: #F383A9 1px solid; BORDER-LEFT: #F383A9 1px solid; BORDER-RIGHT: #F383A9 1px solid; BORDER-TOP: #F383A9 1px solid; FONT-FAMILY: Arial; Helvetica; Microsoft Sans Serif; FONT-SIZE: 8pt; HEIGHT: 18px; WIDTH: 100px;" value="" /><br />
	Mobiel nummer: <INPUT name="mobilenr" size="10" style="BACKGROUND-COLOR: #FFFFFF; BORDER-BOTTOM: #F383A9 1px solid; BORDER-LEFT: #F383A9 1px solid; BORDER-RIGHT: #F383A9 1px solid; BORDER-TOP: #F383A9 1px solid; FONT-FAMILY: Arial; Helvetica; Microsoft Sans Serif; FONT-SIZE: 8pt; HEIGHT: 18px; WIDTH: 80px;" value="" /><br /> 
	<p align=right><a href="#" onclick="document.form.submit()" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('submit','','images/submit_over.gif',1)"><img src="images/submit_up.gif" name="submit" width="49" height="18" border="0" align="absmiddle"></a>
Dan is offline  
Old 10-28-2006, 08:14 PM   #11 (permalink)
Senior Member
 
faisj's Avatar
 
Join Date: Mar 2005
Location: The Netherlands
Posts: 3,198
60.18 NP$ (Donate)

faisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to behold

Child Abuse Child Abuse Baby Health Cancer Survivorship Child Abuse
Now i cant click on submit

is that because of the:

PHP Code:
<p align=right><a href="#" onclick="document.form.submit()" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('submit','','images/submit_over.gif',1)"><img src="images/submit_up.gif" name="submit" width="49" height="18" border="0" align="absmiddle"></a>
a href="#" ?

Ps. I have send you some NP$'s, THANKS FOR THE HELP
I hope we can get it working
__________________

The PPC Parking Guide.com
~how much do you want to earn today?

faisj is offline  
Old 10-28-2006, 08:16 PM   #12 (permalink)
Dan
Buy my domains.
 
Dan's Avatar
 
Join Date: Feb 2006
Posts: 2,801
56.00 NP$ (Donate)

Dan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant future

Autism Autism Autism Autism Autism Autism Autism
You should be able to click it.. the onclick=".." submit's the form, sending the information to script.php. Do you have these files uploaded somewhere?
Dan is offline  
Old 10-28-2006, 08:18 PM   #13 (permalink)
Senior Member
 
faisj's Avatar
 
Join Date: Mar 2005
Location: The Netherlands
Posts: 3,198
60.18 NP$ (Donate)

faisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to behold

Child Abuse Child Abuse Baby Health Cancer Survivorship Child Abuse
Quote:
Originally Posted by Dan
You should be able to click it.. the onclick=".." submit's the form, sending the information to script.php. Do you have these files uploaded somewhere?
I am sending you the url by pm
__________________

The PPC Parking Guide.com
~how much do you want to earn today?

faisj is offline  
Old 10-28-2006, 08:33 PM   #14 (permalink)
A Wealth of Knowledge
 
stscac's Avatar
 
Join Date: Aug 2004
Posts: 3,794
47.60 NP$ (Donate)

stscac has much to be proud ofstscac has much to be proud ofstscac has much to be proud ofstscac has much to be proud ofstscac has much to be proud ofstscac has much to be proud ofstscac has much to be proud ofstscac has much to be proud of


Just a side note, you might want to take your email address out of the code you posted. Just as a precautionary measure.

-Steve
__________________
Follow Me on Twitter:
stscac is offline  
Old 10-28-2006, 08:36 PM   #15 (permalink)
Senior Member
 
faisj's Avatar
 
Join Date: Mar 2005
Location: The Netherlands
Posts: 3,198
60.18 NP$ (Donate)

faisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to beholdfaisj is a splendid one to behold

Child Abuse Child Abuse Baby Health Cancer Survivorship Child Abuse
done but i cant remove it from dan's quotes

THANKS DAN - script is working now!
__________________

The PPC Parking Guide.com
~how much do you want to earn today?

faisj is offline  
Old 10-28-2006, 09:39 PM   #16 (permalink)
Dan
Buy my domains.
 
Dan's Avatar
 
Join Date: Feb 2006
Posts: 2,801
56.00 NP$ (Donate)

Dan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant futureDan has a brilliant future

Autism Autism Autism Autism Autism Autism Autism
I think I removed your email from all of my posts.
Dan is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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 On
Pingbacks are On
Refbacks are On


Site Sponsors
Advertise your business at NamePros

All times are GMT -7. The time now is 04:35 PM.


Powered by: vBulletin® Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Template-Modifications by TMS
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85