Search found 85 matches

by gkwhitworth
Sun Sep 24, 2006 6:54 pm
Forum: General Discussion
Topic: Just sick of developing
Replies: 41
Views: 5790

I was wondering when spiderman was going to swoop in and change the subject back to semi-colons and question marks. :lol:

--

Greg
by gkwhitworth
Sun Sep 24, 2006 2:57 pm
Forum: General Discussion
Topic: Just sick of developing
Replies: 41
Views: 5790

Wow

Hockey Wrote:
I'm constantly told I'm the new Dr. Phil
I can't believe the resemblence, oh and everah...thanks for the .02 cents, I'll put it in a trust fund.

--
Greg
by gkwhitworth
Sat Sep 23, 2006 2:06 pm
Forum: PHP - Code
Topic: Swift Mailer Variable Problems
Replies: 11
Views: 1650

I did that already. I had to join them together in order for them to work right....don't ask me why. If I don't put quotes around them all I get is this:
Name: $fname $lname
Oh well, it works. I will post the code at lunch time. Talk to you guys later

--
Greg
by gkwhitworth
Sat Sep 23, 2006 1:40 pm
Forum: PHP - Code
Topic: Swift Mailer Variable Problems
Replies: 11
Views: 1650

'.$email.' It is kinda frustrating.....but that is the only way I can get my other variables to work....but my host uses MS Sharepoint, which is kinda nice but it makes it so I have to edit my files within Frontpage. I do use HAPEdit for most of my editing though. It is just quicker when I have one...
by gkwhitworth
Sat Sep 23, 2006 2:35 am
Forum: PHP - Code
Topic: Swift Mailer Variable Problems
Replies: 11
Views: 1650

It actually does work with sessions and I am getting emails perfectly fine, loud and clear. <? session_start(); header("Location: http://www.gkwinspired.com"); require('../Swift/Swift.php'); require('../Swift/Swift/Connection/SMTP.php'); $mailer = new Swift(new Swift_Connection_SMTP('127.0...
by gkwhitworth
Sat Sep 23, 2006 2:28 am
Forum: PHP - Code
Topic: Explode
Replies: 4
Views: 762

Yeah, I kinda put that together moments after I posted this thread when I realized that there were no commas between the words. Nor the words "array." I was six hours into work so I guess my mind was kinda PHP fried. Anyways, I am sorry if some of you thought I should close the thread, but...
by gkwhitworth
Sat Sep 23, 2006 2:25 am
Forum: PHP - Code
Topic: session warning in php 5
Replies: 5
Views: 825

aaron wrote: http://www.google.com/search?hl=en&q=php+session+tutorial I know that their are tuts out there, there are tuts out there for everything. I just thought we should have one right here. I mean, why do we even have a tutorial section then if we have google. Please don't take this offens...
by gkwhitworth
Sat Sep 23, 2006 2:16 am
Forum: PHP - Code
Topic: Swift Mailer Auto Respond Problems
Replies: 2
Views: 500

Swift Mailer Auto Respond Problems

The form works fine and it emails fine, well, it emails it fine to me. As you can see I have the recipients put into an array; and was trying to have the email address that was typed in by the user become one of the email addresses of the array. One of the problems I have run into with Swift is call...
by gkwhitworth
Sat Sep 23, 2006 2:08 am
Forum: General Discussion
Topic: Just sick of developing
Replies: 41
Views: 5790

JK

I was just kidding....the phrase just sounded very, very, ........well like a Psychologist.
by gkwhitworth
Fri Sep 22, 2006 4:28 pm
Forum: General Discussion
Topic: Just sick of developing
Replies: 41
Views: 5790

Hockey stated:
We all experience that feeling of fatgiue...
I vote for Hockey to be our DevNet Psychologist.

--
Greg
by gkwhitworth
Fri Sep 22, 2006 4:24 pm
Forum: PHP - Code
Topic: Explode
Replies: 4
Views: 762

Explode

Ok I am trying to grasp the "explode" idea. The PHP Manual states: <?php // Example 1 $pizza = "piece1 piece2 piece3 piece4 piece5 piece6"; $pieces = explode(" ", $pizza); echo $pieces[0]; // piece1 echo $pieces[1]; // piece2 // Example 2 $data = "foo:*:1023:1000::...
by gkwhitworth
Fri Sep 22, 2006 4:19 pm
Forum: PHP - Code
Topic: Please help!!
Replies: 3
Views: 486

Just thought I'd let you know that you will get more help if your subject is more specific than "Please help." You could of used "Problems redirecting on PHP 4.2" or something. I thought I'd tell you before one of the mods laid a smack down. :lol:

--
Greg
by gkwhitworth
Fri Sep 22, 2006 4:15 pm
Forum: PHP - Code
Topic: session warning in php 5
Replies: 5
Views: 825

yeah listen to feyd...loose the session_register.

Note to feyd:

see this is why we need a session tut.

--
Greg
by gkwhitworth
Fri Sep 22, 2006 4:11 pm
Forum: PHP - Code
Topic: Swift Mailer Variable Problems
Replies: 11
Views: 1650

I have tried everything under the sun to get this dumb thing to work. I have used double quotes and single quotes, I have include the list of variables so the variable in the html message no what I am talking about, it just seems that swift has a problem with sessions.

--
Greg
by gkwhitworth
Thu Sep 21, 2006 10:21 pm
Forum: PHP - Code
Topic: Swift Mailer Variable Problems
Replies: 11
Views: 1650

Swift Mailer Variable Problems

I went out and downloaded Swift Mailer and am trying to do two things. 1. Send an email to myself from a form that a user submits that shows the variables from the session. 2. Send that exact same email to the user that created the form. 1. I am currently recieving an email the way I want to, but it...