-
Posts
156 -
Joined
-
Last visited
Everything posted by samporras
-
hi guys. I'm working on my frist PHP script and running into a few stumbling blocks (code below). The email is being sent successfully, but none of the variable data is populated. Here is the page http://www.sitesamurai.com/signupForm.php. Any help would be appreciated. Thanks! Sam >$name = $_REQUEST["userName"]; $teamName = $_REQUEST["teamName"]; $phone = $_REQUEST["phone1"] . "-" . $_REQUEST["phone2"] . "-" . $_REQUEST["phone3"]; $city = $_REQUEST["city"]; $state = $_REQUEST["state"]; $zipCode = $_REQUEST["zipCode"]; $country = $_REQUEST["country"]; $comments = $_REQUEST["comments"]; function PopulateMessage($name,$teamName,$phone,$city,$state,$zipCode,$country,$comments) { $sMessage = '<html><head><title>User Inquiry</title></head><body><p>'; $sMessage .= '<strong>name:</strong><br>' . $name + '<br><br>'; $sMessage .= '<strong>team name:</strong><br>' . $teamName . '<br><br>'; $sMessage .= '<strong>phone:</strong><br>' . $phone . '<br><br>'; $sMessage .= '<strong>city:</strong><br>' . $city . '<br><br>'; $sMessage .= '<strong>state:</strong><br>' . $state . '<br><br>'; $sMessage .= '<strong>zip code:</strong><br>' . $zipCode . '<br><br>'; $sMessage .= '<strong>country:</strong><br>' . $country . '<br><br>'; $sMessage .= '<strong>comments:</strong><br>' . $comments . '<br><br>'; $sMessage .= '</p></body></html>'; return $sMessage; } //populate email message $Message = PopulateMessage($name,$teamName,$phone,$city,$state,$zipCode,$country,$comments); //populate email headers $headers = "MIME-Version: 1.0" . "\r\n"; $headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n"; $headers .= 'From: <xxx@xxxxx.com>' . "\r\n"; //send mail mail("xxx@xxxxx.com","Test Email",$Message,$headers);
-
Thanks Andy. This sounds very do-able for a beginner. I will mess around with it tonight and let you know what i come up with. Sam
-
hey guys. It's been a while since i posted to this forum. Hope everyone is doing great and had a fun 2006. So as part of my new years resolution, i told myself i was going to learn more about working with PHP and MySQL. I have become pretty comfortable working with HTML and CSS, but the only back end programming languages that i have am comfortable with are ASP and C#. I'm slowly begining to understand PHP and MySQL (I bought the book Sams Teach Yourself PHP, MySQL and Apache All in One and am slowly trudging through it), but still had a few questions... do you guys know if there are any online examples or anything of the sort to import data from an excel sheet into a mysql database? those of you that work with MySQL, what is the most common way to populate data into a database (besides manually entering)? Also any additional online tutorials would be great! Thanks! Sam
-
I am an applications developer for the marketing services division of a credit company. I haven't had time to check/reply posts in this (my favorite) forum in about 3 months...so, yeah, i've been stressed out. We just finished some big projects, so we're at a lull. But i do love my job...even with the stress!
-
Thanks Don. Those are the tags i needed. I purchased CSS: The Definitive Guide and The Zen of CSS Design: Visual Enlightenment for the Web. Got them both on Amazon.com and hopefully they should be great help with CSS. Sam
-
Hey guys. I'm still kind of new to CSS, and had a quick question. Anybody know what the how to format the font/color/size for text inside a text box using css? would you have to create a class and have the text box reference that class? if so, what properties do i assign to it? .textbox ??{ font-size: font-color: } Thanks!
-
hey guys....downloaded and installed google talk. Interface looks a lot like AIM, but less cluttered (standard google). Anyways, I haven't had a chance to test the talking functionality because I am sans microphone/speakers at work. The only limitation I see right now is you can't instant message with just anyone that hasn't seen/received your invitation. But i'm sure this is just a control to test it. As one of my friends said, "I bet you can round up all the geeks around the world by seeing who has downloaded and installed this app before noon today". I'm afraid we both fall in this category...hehe. Sam
-
I agree with surefire. A database system like mysql definately gives you more flexibilty. Plus you could leverage it to create other dynamic aspects of your site that are database driven. instead of using aMember, you can set something up yourself where each user would have a unique id (ex. combination of userid and password). When you do a lookup on the database, only an exact match on the unique id will pull back the pre-populated fields on the form. -Sam
-
I would try to delete the file and then post your new one. I've encountered this issue before, and this is the only way i've gotten around it. -Sam
-
Hey guys...I've got a question for ya. I'm trying to create a suppression process so I can then create a list of people i want to email. So far I have 2 tables. Table A contains email addresses and another field I call suppression_type (this field will get it's value based on different types of suppression that i do). Table B contains a running lists of people that opt not to receive an email. Anyways, basically I'm running a query that matches on email addresses and then updates the suppression_type field in table A. I am currently doing this using a sub query that looks like this: >update TableA set suppression_type = 1 where rtrim(ltrim(Email) in (select ltrim(rtrim(Email)) from TableB) and suppression_type is null I tried running counts using this sub query and then using another query that has an inner join (should do the same thing right?). I noticed that the counts were higher using an inner join. Here's the query I ran: >select count(*) from TableA as A inner join TableB as B on A.Email = B.Email Where A.suppression_type is null Can anyone explain the difference between these two and why they would be off? Thanks so much for your help! -Sam
-
Thanks for the quick response. I mainly use horde and i did not see any options to purge older emails across the board. I only saw options to purge the trash folder. I will loook through the other two webmail programs and see...if not i'll search around cpanel and see if there are any scripts for what i'm looking for. Thanks.
-
I'm not too familiar with how webmail operates on the backend, but is there or are there any kinds of script that can be run that could delete all emails older than a certain date. I have an account being used by a client that is taking up around 80MB of disk space. (I have the feeling someone hasn't been deleting their emails...) Any suggestions on how do delete without having to physically go in and delete everything one at a time? Thanks in advance! Sam
-
I just read A Hitchhikers Guide to the Galaxy (coming soon to a theater near you) and The Black Dahlia Avenger Currently reading Angels and Demons and a PHP book
-
# Of Times You Can Connect To Your Email
samporras replied to samporras's topic in CPanel and Site Maintenance
Thanks for the responses guys. The site only has two email accounts as it is a small company. I will let her know that there are limits because of firewall issues. With that being said, I am looking to create another website for a larger company. This particular client would like to have all his employees utilize the email accounts (25-30 accounts). That would be ~215 times per hour with a limit set at 7 minutes (which i think is pretty fair). Could I set them up through my reseller account or would I need to look into purchasing a different account (through TCH of course )? -Sam -
Hey everyone. I hope this post finds you all well. I know i have seen a similar post to this one, but for the life of me i can't find it. I have configured my email to microsoft outlook and set the send/receive properties to check for new emails every minute. 30-40 minutes later i began receiving an error saying that I had logged in too many times for that hour. What is the limit on amount of times per hour that you can check your email? Is there an option in cpanel where you can increase this? I am not really worried about bandwidth as the site itself does not use too much. My client specified that she would like to check for new emails every minute or 2. Thanks. Again, sorry if this has already been discussed. -Sam
-
sorry i didn't get back to you guys. Here's what I came up with (with some help from my co-workers)...i'm using some java script to toggle off between showing the physical address fields. let me know what you guys think. ><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=windows-1252"> <META content="MSHTML 6.00.2800.1458" name=GENERATOR></HEAD> <BODY> <TABLE cellSpacing=0 cellPadding=0 width=400 border=0><NOSCRIPT> <TBODY> <TR> <TD> <H3>ADA Compliant</H3></TD></TR></NOSCRIPT> <TR id=TR_01 style="DISPLAY: none"> <TD>An asterisk (*) indicates a required field.</TD></TR> <TR> <TD align=left> <TABLE cellSpacing=0 cellPadding=2 width=400 border=0> <TBODY> <TR> <TD colSpan=2> </TD></TR> <TR> <TD style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; PADDING-TOP: 0px" bgColor=#c0c0c0 colSpan=2> <STRONG>Physical Address</STRONG></TD></TR> <TR> <TD colSpan=2> </TD></TR> <TR> <TD vAlign=top noWrap align=right width=200><STRONG>* Address: </STRONG></TD> <TD vAlign=bottom align=left width=200><INPUT></TD></TR> <TR> <TD vAlign=top noWrap align=right width=200><STRONG>* City: </STRONG></TD> <TD vAlign=bottom align=left width=200><INPUT size=10></TD></TR> <TR> <TD vAlign=top noWrap align=right width=200><STRONG>* State: </STRONG></TD> <TD vAlign=bottom align=left width=200><INPUT size=2></TD></TR> <TR> <TD vAlign=top noWrap align=right width=200><STRONG>* Zip Code: </STRONG></TD> <TD vAlign=bottom align=left width=200><INPUT size=5></TD></TR></TBODY></TABLE></TD></TR> <TR id=TR_02 style="DISPLAY: none"> <TD align=left> <TABLE cellSpacing=0 cellPadding=2 width=400 border=0> <TBODY> <TR> <TD colSpan=2> </TD></TR> <TR> <TD style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; PADDING-TOP: 0px" bgColor=#c0c0c0 colSpan=2> <STRONG>Mailing Address</STRONG></TD></TR> <TR> <TD vAlign=top align=right width=200><BR><STRONG>* Is your mailing address the same as your physical address?</STRONG></TD> <TD vAlign=bottom align=left width=200><INPUT onclick="if(document.layers){TR_03.style.visibility='hide';}else{TR_03.style.display='none';}" type=radio CHECKED name=mailing_eq_physical>Yes</TD></TR> <TR> <TD vAlign=top align=right width=200> </TD> <TD vAlign=bottom align=left width=200><INPUT onclick="if(document.layers){TR_03.style.visibility='show';}else{TR_03.style.display='inline';}" type=radio name=mailing_eq_physical>No</TD></TR></TBODY></TABLE></TD></TR> <TR id=TR_03> <TD align=left> <TABLE cellSpacing=0 cellPadding=2 width=400 border=0><NOSCRIPT> <TBODY> <TR> <TD colSpan=2> </TD></TR> <TR> <TD bgColor=#c0c0c0 colSpan=2> <STRONG>Mailing Address</STRONG></TD></TR></NOSCRIPT> <TR> <TD align=left width=400 colSpan=2><BR><STRONG>Please provide your mailing address<NOSCRIPT> if it differs from your physical address</NOSCRIPT>.</STRONG></TD></TR> <TR> <TD colSpan=2> </TD></TR> <TR> <TD vAlign=top noWrap align=right width=200><STRONG><SPAN id=SP_01 style="DISPLAY: none">*</SPAN> Address: </STRONG></TD> <TD vAlign=bottom align=left width=200><INPUT></TD></TR> <TR> <TD vAlign=top noWrap align=right width=200><STRONG><SPAN id=SP_02 style="DISPLAY: none">*</SPAN> City: </STRONG></TD> <TD vAlign=bottom align=left width=200><INPUT size=10></TD></TR> <TR> <TD vAlign=top noWrap align=right width=200><STRONG><SPAN id=SP_03 style="DISPLAY: none">*</SPAN> State: </STRONG></TD> <TD vAlign=bottom align=left width=200><INPUT size=2></TD></TR> <TR> <TD vAlign=top noWrap align=right width=200><STRONG><SPAN id=SP_04 style="DISPLAY: none">*</SPAN> Zip Code: </STRONG></TD> <TD vAlign=bottom align=left width=200><INPUT size=5></TD></TR></TBODY></TABLE></TD></TR> <script language=JavaScript> if(document.layers){ TR_01.style.visibility='show'; TR_02.style.visibility='show'; TR_03.style.visibility='hide'; }else{ TR_01.style.display='block'; TR_02.style.display='block'; TR_03.style.display='none'; } for(i=1;i<5;i++){ if(document.layers){document.all('SP_0'+i).style.visibility='show';}else{document.all('SP_0'+i).style.display='inline';} } </SCRIPT> </TBODY></TABLE></BODY></HTML> This works well in my browser (the most recent version of IE), but i noticed that does not work well in netscape or firefox.....any suggestions? -Sam
-
i'll paste the snippets of html that apply to this (it's a very long page) anyways here it is: function PageLoad(equicell) { document.forms[0].elements[0].focus(); //alert(equicell); if (equicell == '1' || equicell == '2') { document.formAcceptanceFull.current_Physical_street_address.visible = true; document.formAcceptanceFull.current_Physical_street_address2.visible = true; document.formAcceptanceFull.current_Physical_city.visible = true; document.formAcceptanceFull.current_Physical_state.visible = true; document.formAcceptanceFull.current_Physical_zip_code.visible = true; document.formAcceptanceFull.current_Physical_plus_4.visible = true; document.formAcceptanceFull.current_Physical_street_address_label.visible = true; document.formAcceptanceFull.current_Physical_street_address2_label.visible = true; document.formAcceptanceFull.current_Physical_city_label.visible = true; document.formAcceptanceFull.current_Physical_state_label.visible = true; document.formAcceptanceFull.current_Physical_zip_code_label.visible = true; document.formAcceptanceFull.current_Physical_plus_4_label.visible = true; document.formAcceptanceFull.current_Physical_street_address.value = ""; document.formAcceptanceFull.current_Physical_street_address2.value = ""; document.formAcceptanceFull.current_Physical_city.value = ""; document.formAcceptanceFull.current_Physical_state.value = ""; document.formAcceptanceFull.current_Physical_zip_code.value = ""; document.formAcceptanceFull.current_Physical_plus_4.value = ""; } } function OnStateChanged() { if (document.formAcceptanceFull.radiobuttonYES.value == "radiobuttonYES") { document.formAcceptanceFull.current_Physical_street_address.visible = true; document.formAcceptanceFull.current_Physical_street_address2.visible = true; document.formAcceptanceFull.current_Physical_city.visible = true; document.formAcceptanceFull.current_Physical_state.visible = true; document.formAcceptanceFull.current_Physical_zip_code.visible = true; document.formAcceptanceFull.current_Physical_plus_4.visible = true; document.formAcceptanceFull.current_Physical_street_address_label.visible = true; document.formAcceptanceFull.current_Physical_street_address2_label.visible = true; document.formAcceptanceFull.current_Physical_city_label.visible = true; document.formAcceptanceFull.current_Physical_state_label.visible = true; document.formAcceptanceFull.current_Physical_zip_code_label.visible = true; document.formAcceptanceFull.current_Physical_plus_4_label.visible = true; document.formAcceptanceFull.current_Physical_street_address.value = ""; document.formAcceptanceFull.current_Physical_street_address2.value = ""; document.formAcceptanceFull.current_Physical_city.value = ""; document.formAcceptanceFull.current_Physical_state.value = ""; document.formAcceptanceFull.current_Physical_zip_code.value = ""; document.formAcceptanceFull.current_Physical_plus_4.value = ""; } else { document.formAcceptanceFull.current_Physical_street_address.visible = false; document.formAcceptanceFull.current_Physical_street_address2.visible = false; document.formAcceptanceFull.current_Physical_city.visible = false; document.formAcceptanceFull.current_Physical_state.visible = false; document.formAcceptanceFull.current_Physical_zip_code.visible = false; document.formAcceptanceFull.current_Physical_plus_4.visible = false; } } <body bgcolor="#FFFFFF" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" onload="PageLoad('<%=Mid(cDataHolder.Mail_Equicell,2,1)%>')"> [b] <table border="0" cellspacing="0" summary="layout table"> <tbody> <form id="formAcceptanceFull" name="formAcceptanceFull" action="acceptanceFull.asp" method="POST">[/b] <tr valign="baseline"> <td align="right" class="standard-font"><p class="paragraph_nomargin"><strong>Is your mailing address the same as <br> your physical address?</strong></p></td> <td> </td> <td class="standard-font"><br> <input name="radiobuttonYES" type="radio" value="radiobuttonYES" checked> Yes<br> <input name="radiobuttonNO" type="radio" value="radiobuttonNO"> No</td> </tr> <tr valign="top"> <td colspan="3" align="right" class="standard-font"><img src="../images/pixel.gif" alt="" width="545" height="10" border="0"></td> </tr> <tr valign="top" bgcolor="#00FF00"> <td colspan="3"> <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#E9E9EA"> <tr> <td width="5"> </td> <td class="standard-font"><p class="paragraph_nomargin"><strong>P</strong><img height="20" alt="" src="../images/pixel.gif" width="5" border="0"><strong>hysical Street Address:</strong></p></td> </tr> </table></td> </tr> <tr valign="top"> <td colspan="3" align="right" class="standard-font"><img src="../images/pixel.gif" alt="" width="545" height="10" border="0"></td> </tr> <tr valign="top"> <td align="right" valign="bottom" class="standard-font"><p class="paragraph_nomargin"><font color="<%=strColorPhysicalAddress%>"><strong><label for="current_Physical_street_address" id="current_Physical_street_address_label">*Address 1:</label></strong><br> (no P.O. Boxes)</font></p></td> <td> </td> <td align="left"><input type=text maxlength="30" name="current_Physical_street_address" id="current_Physical_street_address" size="30" value="<%=cDataHolder.Web_Physical_Address1%>"> </td> </tr> <tr valign="top"> <td colspan="3" align="right" class="standard-font"><img src="../images/pixel.gif" alt="" width="545" height="10" border="0"></td> </tr> <tr valign="top"> <td align="right" valign="bottom" class="standard-font"><p class="paragraph_nomargin"><font color="<%=strColorPhysicalAddress2%>"><strong><label for="current_Physical_street_address2" id="current_Physical_street_address2_label"> Address 2:</label></strong></font></p></td> <td> </td> <td align="left"><input maxlength="20" name="current_Physical_street_address2" id="current_Physical_street_address2" size="24" value="<%=cDataHolder.Web_Physical_Address2%>"> </td> </tr> <tr valign="top"> <td colspan="3" align="right" class="standard-font"><img src="../images/pixel.gif" alt="" width="545" height="10" border="0"></td> </tr> <tr valign="baseline"> <td align="right" class="standard-font"><p class="paragraph_nomargin"><font color="<%=strColorPhysicalCity%>"><strong><label for="current_Physical_city" id="current_Physical_city_label"> *City:</label></strong></font></p></td> <td> </td> <td align="left"><input maxlength="15" name="current_Physical_city" id="current_Physical_city" size="15" value="<%=cDataHolder.Web_Physical_City%>"> </td> </tr> <tr valign="top"> <td colspan="3" align="right" class="standard-font"><img src="../images/pixel.gif" alt="" width="545" height="10" border="0"></td> </tr> <tr valign="baseline"> <td align="right" class="standard-font"><p class="paragraph_nomargin"><font color="<%=strColorPhysicalState%>"><strong><label for="current_Physical_state" id="current_Physical_state_label"> *State:</label></strong></font></p></td> <td> </td> <td align="left"> <select name="current_Physical_state" id="current_Physical_state" size="1"> <% FOR i=1 to state_array_length %> <% if Trim(CStr(cDataHolder.Web_Physical_State)) = "" then %> <% Response.Write("<OPTION VALUE=" & state_array(i,1) & "><FONT face=" & Application("DefaultFONT") & " SIZE=3>" & state_array(i,2) & "</FONT>") %> <% else %> <% if (state_array(i,1) = Trim(CStr(cDataHolder.Web_Physical_State))) then %> <% Response.Write("<OPTION SELECTED VALUE=" & state_array(i,1) & "><FONT face=" & Application("DefaultFONT") & " SIZE=3>" & state_array(i,2) & "</FONT>") %> <% else %> <% Response.Write("<OPTION VALUE=" & state_array(i,1) & "><FONT face=" & Application("DefaultFONT") & " SIZE=3>" & state_array(i,2) & "</FONT>") %> <% end if %> <% end if %> <% NEXT %> </select> </td> </tr> <tr valign="top"> <td colspan="3" align="right" class="standard-font"><img src="../images/pixel.gif" alt="" width="545" height="10" border="0"></td> </tr> <tr valign="baseline"> <td align="right" class="standard-font"><p class="paragraph_nomargin"><font color="<%=strColorPhysicalZip%>"><strong><label for="current_Physical_zip_code" id="current_Physical_zip_code_label"> *Zip Code:</label></strong></font></p></td> <td> </td> <td class="standard-font"> <input maxlength="5" name="current_Physical_zip_code" id="current_Physical_zip_code" size="5" value="<%=cDataHolder.Web_Physical_Zip_Code%>"> - <input maxlength="4" name="current_Physical_plus_4" id="current_Physical_plus_4" size="4" value="<%=cDataHolder.Web_Physical_Zip_Code4%>"> </td> </tr> [b]</tbody> </table>[/[/b]code]
-
hey guys. I'm running into a bump in the road here and i'm not all to familiar with javascript. Basically what i'm trying to do is to show some input fields and labels based on a value that i'm passing from a database. if the value equals a 1 or a 2, then the fields display. Here is what i have so far: >function PageLoad(equicell) { document.forms[0].elements[0].focus(); //alert(equicell); if (equicell == '1' || equicell == '2') { document.formAcceptanceFull.current_Physical_street_address.visible = true; document.formAcceptanceFull.current_Physical_street_address2.visible = true; document.formAcceptanceFull.current_Physical_city.visible = true; document.formAcceptanceFull.current_Physical_state.visible = true; document.formAcceptanceFull.current_Physical_zip_code.visible = true; document.formAcceptanceFull.current_Physical_plus_4.visible = true; document.formAcceptanceFull.current_Physical_street_address_label.visible = true; document.formAcceptanceFull.current_Physical_street_address2_label.visible = true; document.formAcceptanceFull.current_Physical_city_label.visible = true; document.formAcceptanceFull.current_Physical_state_label.visible = true; document.formAcceptanceFull.current_Physical_zip_code_label.visible = true; document.formAcceptanceFull.current_Physical_plus_4_label.visible = true; document.formAcceptanceFull.current_Physical_street_address.value = ""; document.formAcceptanceFull.current_Physical_street_address2.value = ""; document.formAcceptanceFull.current_Physical_city.value = ""; document.formAcceptanceFull.current_Physical_state.value = ""; document.formAcceptanceFull.current_Physical_zip_code.value = ""; document.formAcceptanceFull.current_Physical_plus_4.value = ""; } } I have ID tags around all non-input fields that end in "_label" (in the html). I keep getting an error saying: >Error: document.formAcceptanceFull.current_Physical_street_address_label has no properties What am i doing wrong?? any help would be greatly appreciated. Thanks! -Sam
-
Thanks for clearing that up Jim. I didn't understand the logic behind it...but now I do. Great to keep in the back of my mind as i continue to learn to code. -Sam
-
So does it just disregards the "0" in "10"? it just compares the first character in one string to the first character in another string? Thanks for the response by the way.
-
Hey guys. I was creating a validation on one of the sites I was working on using VB Script and for some reason I could not get it to work. My question does not pertain to VB script alone... I inputed a variable that had a length of 9 positions. The first part of the condition was not being met (as it should), but for some reason the second condition was being met. We all know that 9 is not greater than 10 but for some reason the error message that i created kept on being triggered. It wasn't until i removed the quotes from the 7 and 10 that the validation was working correctly. Is this because the code was interpreting number 10 in quotes as a string? Does "10" have a different value than 10 in binary? If this is true, ? The code is working, but i'm truely stumped by this... Thanks. -Sam Any suggestions
-
Can we talk about how ridiculous the P Diddy's (or Puff Daddy...the rapper) campaign is Vote or Die! ?????? I mean come on. It's a good principle to try to get young voters to vote, but i'm not sure I want the youth of America following a campaign like Vote or Die. And I absolutely HATE when movie stars vote for a certain candidate just because it's "trendy"..... I really think Hollywood should stay out of politics.
-
I happened to be an undecided voter. And, I think I am in the minority because I actually have bothered to research both candidates extensively (which i have found really hard because of the abundance of biased news we have in this country). Guys, I'm really in a bind. I can not honestly say that, in respect to the presidential election, I feel comfortable voting for either of the candidates. I really think that this is a sad thing. I hate having to vote for the lesser of the two evils. I did my part and voted early in the primaries for the candidate that I believed would be a good one, but he did not make it. So what am I left to do? vote for a candidate I don't like because i like the opposing candidate even less? I've come to realize that the two main political parties here in the United States are two different cuts from the same meat. So what am i left to do...vote for the libertarian party? A wasted vote? Of vote for the two other parties that have produced inferior candidates for the upcoming four years? Or not vote at all? I'm not a fan of people saying that many voters don't vote because they're too lazy to research the candidates. I think many people don't vote because they do not feel that either candidate represents their beliefs and values. woah....politics sure do bring out alot of emotions in people! All in all i believe in the US and I believe in the political process....I just think we as a people need to do a better job of looking beyond what the papers and movie stars say about the candidates and pick out the good ones from the begining. -Sam
-
Hey Guys. I was just looking around the forums today and I stumbled upon the birthdays and anniversary link. All you guys remembered my birthday and I wanted to say thank you (even though it's a little late). The TCH family rocks! I must admit i got a little....um....garbage in my contacts...(NOT tears!!) from reading it. I'm 24 years old, lovin' life, belong to an awesome forum....what else could I ask for? Seriously...thanks again guys!
-
great...i'm sure i deseve the bonehead play of the day.....
