Search found 19 matches

by amdorsey
Tue Mar 01, 2005 12:51 pm
Forum: Databases
Topic: Retrieving unique id after new row has been inserted
Replies: 1
Views: 370

Retrieving unique id after new row has been inserted

I am inserting data into a table, after the INSERT RECORD has been completed, I want to send an email notifying a user of the insertion. I want to display the ID of the new row inserted.

How do I pull the ID right after the row has been inserted to sen via a senmail.php script?

Any Ideas?
by amdorsey
Wed Feb 23, 2005 12:39 pm
Forum: PHP - Code
Topic: Problems sending mail to some users
Replies: 1
Views: 394

Problems sending mail to some users

removed.
by amdorsey
Wed Feb 23, 2005 11:25 am
Forum: PHP - Code
Topic: Problems sending email using php to some recipients.
Replies: 6
Views: 726

done that. I always get the emails fine to my Pop3, hotmail, and comcast addresses. :(

Oh Well. Somewhere in the worls someone is having the smae problem as me. I must keep looking. Its driving me insane...
by amdorsey
Wed Feb 23, 2005 10:38 am
Forum: PHP - Code
Topic: Problems sending email using php to some recipients.
Replies: 6
Views: 726

Yes. I can email all of these customers fine via Outlook, Outlook Express, etc.
by amdorsey
Wed Feb 23, 2005 9:18 am
Forum: PHP - Code
Topic: Problems sending email using php to some recipients.
Replies: 6
Views: 726

Problems sending email using php to some recipients.

I am having problems sending email to some recipients. It seems like anyone on an exchange server (not sure though) It will deliver fine to about 60% of my customers. Others they just won't recieve anything at all. Has anyone heard of any problems with PHP sending mail before? I am desperate at this...
by amdorsey
Thu Feb 17, 2005 4:04 pm
Forum: PHP - Code
Topic: Using PHP to send forms
Replies: 5
Views: 995

Bulk Mail? What do you mean? I am sending all normal headers I should be.. $headers = "MIME-Version: 1.0\r\n"; $headers .= "From: ".$email."\n"; $headers .= "To: ".$recipient."\n"; $headers .= "Reply-To: ".$email."\n"; if ($bcc) $...
by amdorsey
Thu Feb 17, 2005 11:26 am
Forum: PHP - Code
Topic: Using PHP to send forms
Replies: 5
Views: 995

Using PHP to send forms

Not sure what kind of problem this could be...

I am using a simple php script to send mail. It sends mail fine to most email accounts. But several of my clients (On an Exchange Server) will not recieve the emails.

Any ideas?
by amdorsey
Fri Dec 10, 2004 1:21 pm
Forum: PHP - Code
Topic: Loop through Arrays?
Replies: 15
Views: 1786

I am working on it now, I will try to post a response in the next 20 minutes or so.
by amdorsey
Fri Dec 10, 2004 12:57 pm
Forum: PHP - Code
Topic: Loop through Arrays?
Replies: 15
Views: 1786

Sorry, I didn't even realize I made a cross-post, my bad.
by amdorsey
Thu Dec 09, 2004 11:20 pm
Forum: PHP - Code
Topic: Loop through Arrays?
Replies: 15
Views: 1786

This is the whole page...Form and All. <form action="<?php echo $editFormAction; ?>" method="POST" name="Status_Update" id="Status_Update"> <table width="100%" height="30" border="0" cellpadding="0" cellspacing="0&q...
by amdorsey
Thu Dec 09, 2004 4:07 pm
Forum: PHP - Code
Topic: Loop through Arrays?
Replies: 15
Views: 1786

Here is the code for the table... <td align="center" valign="middle" class="style16"><input name="isSelected" type="checkbox" id="isSelected" value="checkbox"></td> <td class="style16"><?php echo $row_Log_Display&#11...
by amdorsey
Thu Dec 09, 2004 3:48 pm
Forum: PHP - Code
Topic: Loop through Arrays?
Replies: 15
Views: 1786

I am trying to Update multiple records in a database using checkboxes that are in a repeated region. So I have a table with one row repeating, and I need to update the records with the corresponding checkboxes. make sense?
by amdorsey
Thu Dec 09, 2004 2:51 pm
Forum: Databases
Topic: Updating Multiple Records Based on A checkbox in a Repeated
Replies: 5
Views: 1143

How would you loop through the array when updating?
by amdorsey
Thu Dec 09, 2004 2:50 pm
Forum: PHP - Code
Topic: Loop through Arrays?
Replies: 15
Views: 1786

Loop through Arrays?

How would you loop through the array, in yo,ur update code.
by amdorsey
Thu Dec 09, 2004 11:17 am
Forum: Databases
Topic: Updating Multiple Records Based on A checkbox in a Repeated
Replies: 5
Views: 1143

Updating Multiple Records Based on A checkbox in a Repeated

Question for the Pros: I want to display records in a database. A single Row will be made a repeat region to display all the records. Simple. In that row I also want a checkbox, next to each record. Based on the checkboxes checked, I want to UPDATE those records in the database. Here is the code to ...