This seems so silly but its driving me nuts!
I redirect people who reached a page they shouldn't have. So if the session I am looking for is not there, they are redirected back to the page with variable ks=1 set (ks as in kill session)
I have this condition in the home page where if they have...
I built a script that will send an email to a bunch of people from a list.
At each row, I have a checkbox to select whether to include that person in the mass email or no.
Funny thing that's happening is that if I choose less than 10 people to email it goes through, however if I choose...
I am trying to locate all records paid by the same card (last 4 digits were stored and column name is last_4) on the same date (column is called date_made, and is in the date_time format)
SELECT *
FROM res_reservations a
INNER JOIN res_reservations b
ON a.last_4=b.last_4
WHERE a.date_made LIKE...
I migrated from a shared server that ran PHP 4 to a new one running PHP5.
I'm having trouble sending email as in this simple example:
<?
$tocust ="me@yoursite.com";
$mail_contents="This is a test email";
$subjectcust ="Hello Again!";
$mailheaderscust ="From:Mysite.com...
I'm trying to display values selected via radio button. It works fine as:
function GetSelectedItem() {
var thefrm = document.forms['showtimes'].elements;
var theans = thefrm['time_id[]'];
for(i=0;i<theans.length;i++) {
theel = theans[i];
tnum=theel.value
if(theel.checked == true){...
I'm getting a horrible gap where there should be none but only in IE6.
Page I'm working on:
http://www.washny.com/avatar2/
The css code for that section is this:
div.content_top_cap{
float:left;
width:900px;
background-image:url(../imgs/main_content_topcap.gif)...
I have an account with Mailtrust.com. They are a popular email host.
I copied my parameters from a regular email client (ie outlook) where everything works fine.
$server = '{imap.emailsrvr.com:143}';
$mailbox = 'INBOX';
$username = 'me@mydomain.com';
$password = 'mypassword';
//connect to...
I have a system set up where a bunch of users log in daily.
I want users to be able to set reminder emails to each other to check on certain tasks, but such emails are to be sent at later dates.
I guess I can:
1). store the contents of the form into database with the timestamp of the time it...
Let me explain myself as best as I can I think I need a select within a select. This is for a school bus run. I want to pull from a db all kids I am picking up at each address.
Table 1: Parents - Parent_id, Address, etc.
Table 2: Kids - Parent_id, Kid_id, ect
The following will output on each...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.